| | |
| | | public class ToolsClassify implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | |
| | | /**主键id*/ |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | @ApiModelProperty(value = "主键id") |
| | | private String id; |
| | | /**分类编码*/ |
| | | @Excel(name = "分类编码", width = 15) |
| | | @ApiModelProperty(value = "分类编码") |
| | | private String classifyId; |
| | | /**类型名称*/ |
| | | @Excel(name = "类型名称", width = 15) |
| | | @Excel(name = "分类名称", width = 15) |
| | | @ApiModelProperty(value = "类型名称") |
| | | private String typeName; |
| | | |
| | | /**父类型id*/ |
| | | @Excel(name = "父类型id", width = 15) |
| | | //@Excel(name = "父类型id", width = 15) |
| | | @ApiModelProperty(value = "父类型id") |
| | | private String parentId; |
| | | |
| | | @Excel(name = "上级分类编号", width = 15) |
| | | @TableField(exist = false) |
| | | private String parentNum; |
| | | @Excel(name = "上级分类名称", width = 15) |
| | | @TableField(exist = false) |
| | | private String parentName; |
| | | /**显示序号*/ |
| | | @Excel(name = "显示序号", width = 15) |
| | | //@Excel(name = "显示序号", width = 15) |
| | | @ApiModelProperty(value = "显示序号") |
| | | private String seq; |
| | | /**状态(1.启用;2.关闭)*/ |
| | | @Excel(name = "状态(1.启用;2.关闭)", width = 15) |
| | | //@Excel(name = "状态(1.启用;2.关闭)", width = 15) |
| | | @ApiModelProperty(value = "状态(1.启用;2.关闭)") |
| | | private String status; |
| | | /**是否是叶子节点*/ |
| | | @Excel(name = "是否是叶子节点", width = 15) |
| | | //@Excel(name = "是否是叶子节点", width = 15) |
| | | @ApiModelProperty(value = "是否是叶子节点") |
| | | private String leafFlag; |
| | | /**层级*/ |
| | | @Excel(name = "层级", width = 15) |
| | | //@Excel(name = "层级", width = 15) |
| | | @ApiModelProperty(value = "层级") |
| | | private String rank; |
| | | /**对应参数模板表名称*/ |
| | | @Excel(name = "对应参数模板表名称", width = 15) |
| | | //@Excel(name = "对应参数模板表名称", width = 15) |
| | | @ApiModelProperty(value = "对应参数模板表名称") |
| | | @Dict(dicCode = "tool_para_type") |
| | | private String paraTypeFlag; |
| | | /**备注*/ |
| | | |
| | | /**加工中心刀具简称*/ |
| | | @ApiModelProperty(value = "加工中心刀具简称") |
| | | private String aliasLabel; |
| | | |
| | | @ApiModelProperty(value = "工具分类编码方式") |
| | | private String encodingType; |
| | | |
| | | @Excel(name = "参数模板", width = 15) |
| | | @TableField(exist = false) |
| | | private String paraTypeFlagName; |
| | | |
| | | /**备注*/ |
| | | @Excel(name = "备注", width = 15) |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | /**租户号*/ |
| | | @Excel(name = "租户号", width = 15) |
| | | //@Excel(name = "租户号", width = 15) |
| | | @ApiModelProperty(value = "租户号") |
| | | private String tenantId; |
| | | /**创建人*/ |
| | |
| | | @ApiModelProperty(value = "创建时间") |
| | | private Date createTime; |
| | | /**更新人*/ |
| | | @Excel(name = "更新人", width = 15) |
| | | //@Excel(name = "更新人", width = 15) |
| | | @ApiModelProperty(value = "更新人") |
| | | private String updateBy; |
| | | /**更新时间*/ |
| | | @Excel(name = "更新时间", width = 15, format = "yyyy-MM-dd") |
| | | //@Excel(name = "更新时间", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | @ApiModelProperty(value = "更新时间") |
| | | private Date updateTime; |
| | | /**分类编码*/ |
| | | @Excel(name = "分类编码", width = 15) |
| | | @ApiModelProperty(value = "分类编码") |
| | | private String classifyId; |
| | | |
| | | @TableField(exist = false) |
| | | private String parentNum; |
| | | @TableField(exist = false) |
| | | private String parentName; |
| | | @TableField(exist = false) |
| | | private String paraTypeFlagName; |
| | | |
| | | } |