|
|
|
@ -1,6 +1,7 @@ |
|
|
|
|
package org.jeecg.modules.zystylefabric.entity; |
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
@ -15,6 +16,11 @@ public class NewZyStyleFabric { |
|
|
|
|
@TableId(type = IdType.ASSIGN_ID) |
|
|
|
|
@ApiModelProperty(value = "主键") |
|
|
|
|
private java.lang.String id; |
|
|
|
|
|
|
|
|
|
/**服装类型 名称*/ |
|
|
|
|
@ApiModelProperty(value = "服装类型 名称") |
|
|
|
|
private java.lang.String typeName; |
|
|
|
|
|
|
|
|
|
/**款式id*/ |
|
|
|
|
@Excel(name = "款式id", width = 15, dictTable = "zy_cloths_style", dicText = "style_names", dicCode = "id") |
|
|
|
|
@ApiModelProperty(value = "款式id") |
|
|
|
@ -24,8 +30,8 @@ public class NewZyStyleFabric { |
|
|
|
|
@ApiModelProperty(value = "面料id") |
|
|
|
|
private java.lang.String fabricId; |
|
|
|
|
/**名称*/ |
|
|
|
|
@Excel(name = "名称", width = 15) |
|
|
|
|
@ApiModelProperty(value = "名称") |
|
|
|
|
@Excel(name = "面料 名称", width = 15) |
|
|
|
|
@ApiModelProperty(value = "面料 名称") |
|
|
|
|
private java.lang.String fabricName; |
|
|
|
|
/**材料编号*/ |
|
|
|
|
@Excel(name = "材料编号", width = 15) |
|
|
|
@ -36,8 +42,8 @@ public class NewZyStyleFabric { |
|
|
|
|
@ApiModelProperty(value = "编号") |
|
|
|
|
private String styleNums; |
|
|
|
|
/**名称*/ |
|
|
|
|
@Excel(name = "名称", width = 15) |
|
|
|
|
@ApiModelProperty(value = "名称") |
|
|
|
|
@Excel(name = "服装款式 名称", width = 15) |
|
|
|
|
@ApiModelProperty(value = "服装款式 名称") |
|
|
|
|
private String styleNames; |
|
|
|
|
/**创建日期*/ |
|
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|