|
|
@ -35,6 +35,11 @@ public class ZyClothsType implements Serializable { |
|
|
|
@TableId(type = IdType.ASSIGN_ID) |
|
|
|
@TableId(type = IdType.ASSIGN_ID) |
|
|
|
@ApiModelProperty(value = "衣服类型表") |
|
|
|
@ApiModelProperty(value = "衣服类型表") |
|
|
|
private java.lang.String id; |
|
|
|
private java.lang.String id; |
|
|
|
|
|
|
|
/**编号*/ |
|
|
|
|
|
|
|
@Excel(name = "上级类型",dictTable = "zy_cloths_type", dicText = "type_name", dicCode = "id", width = 15) |
|
|
|
|
|
|
|
@Dict(dictTable = "zy_cloths_type", dicText = "type_name", dicCode = "id") |
|
|
|
|
|
|
|
@ApiModelProperty(value = "父类ID") |
|
|
|
|
|
|
|
private java.lang.String typeId; |
|
|
|
/**编号*/ |
|
|
|
/**编号*/ |
|
|
|
@Excel(name = "编号", width = 15) |
|
|
|
@Excel(name = "编号", width = 15) |
|
|
|
@ApiModelProperty(value = "编号") |
|
|
|
@ApiModelProperty(value = "编号") |
|
|
@ -44,15 +49,18 @@ public class ZyClothsType implements Serializable { |
|
|
|
@ApiModelProperty(value = "类型名称") |
|
|
|
@ApiModelProperty(value = "类型名称") |
|
|
|
private java.lang.String typeName; |
|
|
|
private java.lang.String typeName; |
|
|
|
/**企业*/ |
|
|
|
/**企业*/ |
|
|
|
@Excel(name = "企业", width = 15) |
|
|
|
@Excel(name = "企业",dictTable = "sys_depart", dicText = "depart_name", dicCode = "id", width = 15) |
|
|
|
|
|
|
|
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
|
|
|
@ApiModelProperty(value = "企业") |
|
|
|
@ApiModelProperty(value = "企业") |
|
|
|
private java.lang.String enterpriseId; |
|
|
|
private java.lang.String enterpriseId; |
|
|
|
/**createTime*/ |
|
|
|
/**createTime*/ |
|
|
|
|
|
|
|
@Excel(name = "创建时间", width = 15,format = "yyyy-MM-dd") |
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd") |
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd") |
|
|
|
@ApiModelProperty(value = "createTime") |
|
|
|
@ApiModelProperty(value = "createTime") |
|
|
|
private java.util.Date createTime; |
|
|
|
private java.util.Date createTime; |
|
|
|
/**updateTime*/ |
|
|
|
/**updateTime*/ |
|
|
|
|
|
|
|
@Excel(name = "更新时间", width = 15 ,format = "yyyy-MM-dd") |
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd") |
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd") |
|
|
|
@ApiModelProperty(value = "updateTime") |
|
|
|
@ApiModelProperty(value = "updateTime") |
|
|
|