1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.szwl.model.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import java.util.Date;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- /**
- * <p>
- *
- * </p>
- *
- * @author wuhs
- * @since 2022-07-12
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @ApiModel(value="TArea对象", description="")
- public class TArea implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- private Date createDate;
- private Date modifyDate;
- private Integer orders;
- private String fullName;
- private String name;
- private String treePath;
- private Long parent;
- private String code;
- }
|