| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecg.common.constant.CommonConstant; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | * <p> |
| | | * 部门表 |
| | | * <p> |
| | | * |
| | | * |
| | | * @Author Steve |
| | | * @Since 2019-01-22 |
| | | */ |
| | |
| | | @TableName("sys_depart") |
| | | public class SysDepart implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /**ID*/ |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private String id; |
| | |
| | | private String status; |
| | | /**删除状态(0,正常,1已删除)*/ |
| | | @Dict(dicCode = "del_flag") |
| | | private String delFlag; |
| | | private String delFlag = String.valueOf(CommonConstant.DEL_FLAG_0); |
| | | /**对接企业微信的ID*/ |
| | | private String qywxIdentifier; |
| | | /**创建人*/ |
| | |
| | | @TableField(exist = false) |
| | | private String oldDirectorUserIds; |
| | | //update-end---author:wangshuai ---date:20200308 for:[JTC-119]新增字段负责人ids和旧的负责人ids |
| | | |
| | | |
| | | /** |
| | | * 重写equals方法 |
| | | */ |
| | |
| | | @Override |
| | | public int hashCode() { |
| | | |
| | | return Objects.hash(super.hashCode(), id, parentId, departName, |
| | | departNameEn, departNameAbbr, departOrder, description,orgCategory, |
| | | orgType, orgCode, mobile, fax, address, memo, status, |
| | | return Objects.hash(super.hashCode(), id, parentId, departName, |
| | | departNameEn, departNameAbbr, departOrder, description,orgCategory, |
| | | orgType, orgCode, mobile, fax, address, memo, status, |
| | | delFlag, createBy, createTime, updateBy, updateTime,useDepartNum,repairDepartNum); |
| | | } |
| | | } |