package com.yuanchu.mom.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; import java.time.LocalDateTime; /** * 部门明细 * @TableName department_lims */ @TableName(value ="department_lims") @Data public class DepartmentLims implements Serializable { @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty("名称") private String name; @ApiModelProperty("父级id") private Integer fatherId; @TableField(fill = FieldFill.INSERT) private Integer createUser; @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @TableField(fill = FieldFill.INSERT_UPDATE) private Integer updateUser; @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; }