对比新文件 |
| | |
| | | package org.jeecg.modules.dnc.ucenter; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | @TableName(value = "sys_department") |
| | | public class Department implements Serializable { |
| | | @TableId |
| | | private String departId; |
| | | private String departName; |
| | | private String departCode; |
| | | private String parentId; |
| | | private Integer priority; |
| | | private Integer rankLevel; |
| | | private String mgrMan; |
| | | private String description; |
| | | @JsonIgnore |
| | | @TableField(value = "create_time", select = false, fill = FieldFill.INSERT) |
| | | private Date createTime; |
| | | @JsonIgnore |
| | | @TableField(value = "update_time", select = false, fill = FieldFill.UPDATE) |
| | | private Date updateTime; |
| | | @JsonIgnore |
| | | @TableField(value = "create_by", select = false, fill = FieldFill.INSERT) |
| | | private String createBy; |
| | | @JsonIgnore |
| | | @TableField(value = "update_by", select = false, fill = FieldFill.UPDATE) |
| | | private String updateBy; |
| | | @JsonIgnore |
| | | @TableLogic |
| | | @TableField(value = "delete_flag", select = false) |
| | | private Integer deleteFlag = 0; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer positionType; |
| | | } |