parent
6d6c7f107e
commit
e9d6d744d9
14 changed files with 880 additions and 200 deletions
@ -0,0 +1,183 @@ |
|||||||
|
package org.jeecg.modules.workproduct.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
import org.jeecg.common.aspect.annotation.Dict; |
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: 产品表 |
||||||
|
* @Author: jeecg-boot |
||||||
|
* @Date: 2023-01-07 |
||||||
|
* @Version: V1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@TableName("zy_product") |
||||||
|
@Accessors(chain = true) |
||||||
|
@EqualsAndHashCode(callSuper = false) |
||||||
|
@ApiModel(value="zy_product对象", description="产品表") |
||||||
|
public class ZyProductVo implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/**主键*/ |
||||||
|
@TableId(type = IdType.ASSIGN_ID) |
||||||
|
@ApiModelProperty(value = "主键") |
||||||
|
private String id; |
||||||
|
/**创建人*/ |
||||||
|
@ApiModelProperty(value = "创建人") |
||||||
|
private String createBy; |
||||||
|
/**创建日期*/ |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "创建日期") |
||||||
|
private Date createTime; |
||||||
|
/**更新人*/ |
||||||
|
@ApiModelProperty(value = "更新人") |
||||||
|
private String updateBy; |
||||||
|
/**更新日期*/ |
||||||
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
||||||
|
@ApiModelProperty(value = "更新日期") |
||||||
|
private Date updateTime; |
||||||
|
/**所属部门*/ |
||||||
|
@ApiModelProperty(value = "所属部门") |
||||||
|
private String sysOrgCode; |
||||||
|
/**产品编号*/ |
||||||
|
@Excel(name = "产品编号", width = 15) |
||||||
|
@ApiModelProperty(value = "产品编号") |
||||||
|
private String productCode; |
||||||
|
|
||||||
|
@Excel(name = "产品名称", width = 50) |
||||||
|
@ApiModelProperty(value = "产品名称") |
||||||
|
private String productName; |
||||||
|
|
||||||
|
/**工单编号*/ |
||||||
|
@Excel(name = "工单", width = 15) |
||||||
|
@ApiModelProperty(value = "工单") |
||||||
|
private String workCode; |
||||||
|
|
||||||
|
/**生产时间*/ |
||||||
|
@Excel(name = "生产时间", width = 15) |
||||||
|
@ApiModelProperty(value = "生产时间") |
||||||
|
private Integer produceTime; |
||||||
|
/**合计(手工TMU)*/ |
||||||
|
@Excel(name = "合计(手工TMU)", width = 15) |
||||||
|
@ApiModelProperty(value = "合计(手工TMU)") |
||||||
|
private Double totalManualTmu; |
||||||
|
/**合计(设备TMU)*/ |
||||||
|
@Excel(name = "合计(设备TMU)", width = 15) |
||||||
|
@ApiModelProperty(value = "合计(设备TMU)") |
||||||
|
private Double totalMachineTmu; |
||||||
|
/**合计(手工秒)*/ |
||||||
|
@Excel(name = "合计(手工秒)", width = 15) |
||||||
|
@ApiModelProperty(value = "合计(手工秒)") |
||||||
|
private Integer totalMaunal; |
||||||
|
/**合计(设备秒)*/ |
||||||
|
@Excel(name = "合计(设备秒)", width = 15) |
||||||
|
@ApiModelProperty(value = "合计(设备秒)") |
||||||
|
private Integer totalMachine; |
||||||
|
/**企业*/ |
||||||
|
@Excel(name = "企业", width = 15) |
||||||
|
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") |
||||||
|
@ApiModelProperty(value = "企业") |
||||||
|
private String enterprisesId; |
||||||
|
/**用户*/ |
||||||
|
@Excel(name = "用户", width = 15) |
||||||
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username") |
||||||
|
@ApiModelProperty(value = "用户") |
||||||
|
private String userId; |
||||||
|
/**结构图*/ |
||||||
|
@Excel(name = "结构图", width = 15) |
||||||
|
@ApiModelProperty(value = "结构图") |
||||||
|
private String structureDiagram; |
||||||
|
/**排料图*/ |
||||||
|
@Excel(name = "排料图", width = 15) |
||||||
|
@ApiModelProperty(value = "排料图") |
||||||
|
private String layoutDiagram; |
||||||
|
/**产品图片*/ |
||||||
|
@Excel(name = "产品图片", width = 15) |
||||||
|
@ApiModelProperty(value = "产品图片") |
||||||
|
private String productPicture; |
||||||
|
/**身高*/ |
||||||
|
@Excel(name = "身高", width = 15) |
||||||
|
@ApiModelProperty(value = "身高") |
||||||
|
private Double height; |
||||||
|
/**体重*/ |
||||||
|
@Excel(name = "体重", width = 15) |
||||||
|
@ApiModelProperty(value = "体重") |
||||||
|
private Double weight; |
||||||
|
/**下摆*/ |
||||||
|
@Excel(name = "下摆", width = 15) |
||||||
|
@ApiModelProperty(value = "下摆") |
||||||
|
private Double hem; |
||||||
|
/**袖口*/ |
||||||
|
@Excel(name = "袖口", width = 15) |
||||||
|
@ApiModelProperty(value = "袖口") |
||||||
|
private Double cuff; |
||||||
|
/**袖长*/ |
||||||
|
@Excel(name = "袖长", width = 15) |
||||||
|
@ApiModelProperty(value = "袖长") |
||||||
|
private Double sleeveLength; |
||||||
|
/**胸围*/ |
||||||
|
@Excel(name = "胸围", width = 15) |
||||||
|
@ApiModelProperty(value = "胸围") |
||||||
|
private Double bust; |
||||||
|
/**腰围*/ |
||||||
|
@Excel(name = "腰围", width = 15) |
||||||
|
@ApiModelProperty(value = "腰围") |
||||||
|
private Double theWaist; |
||||||
|
/**肩宽*/ |
||||||
|
@Excel(name = "肩宽", width = 15) |
||||||
|
@ApiModelProperty(value = "肩宽") |
||||||
|
private Double shoulderwidth; |
||||||
|
/**前身长*/ |
||||||
|
@Excel(name = "前身长", width = 15) |
||||||
|
@ApiModelProperty(value = "前身长") |
||||||
|
private Double forebodylength; |
||||||
|
/**领围*/ |
||||||
|
@Excel(name = "领围", width = 15) |
||||||
|
@ApiModelProperty(value = "领围") |
||||||
|
private Double neck; |
||||||
|
/**臀围*/ |
||||||
|
@Excel(name = "臀围", width = 15) |
||||||
|
@ApiModelProperty(value = "臀围") |
||||||
|
private Double hipline; |
||||||
|
/**衣长*/ |
||||||
|
@Excel(name = "衣长", width = 15) |
||||||
|
@ApiModelProperty(value = "衣长") |
||||||
|
private Double length; |
||||||
|
/**胸距*/ |
||||||
|
@Excel(name = "胸距", width = 15) |
||||||
|
@ApiModelProperty(value = "胸距") |
||||||
|
private Double sternalDistance; |
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "客户姓名") |
||||||
|
private String realname; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "企业名称") |
||||||
|
private String departName; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "款式") |
||||||
|
private String typeName; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "型号") |
||||||
|
private String modelNumber; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "生产时间-开始") |
||||||
|
private Integer produceTimeBegin; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "生产时间") |
||||||
|
private Integer produceTimeEnd; |
||||||
|
} |
Loading…
Reference in new issue