| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | 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 java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "入库时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private Date startTime; |
| | | |
| | | @TableField(exist = false) |
| | | private String startTimeEx; |
| | | |
| | | @ApiModelProperty(value = "记录时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
| | | private Date recordTime; |
| | | |
| | | @ApiModelProperty(value = "厂商名称") |
| | | private String provideName; |
| | | |
| | | @ApiModelProperty(value = "产品名称") |
| | | private String productName; |
| | | |
| | | @ApiModelProperty(value = "不良现象描述") |
| | | private String content; |
| | |
| | | @ApiModelProperty(value = "附件url") |
| | | private String fileUrl; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "附件url的文件名") |
| | | private List nameList; |
| | | |
| | | @ApiModelProperty(value = "型号") |
| | | private String type; |
| | | |
| | | @ApiModelProperty(value = "提出者") |
| | | private Integer senderId; |
| | | |
| | | private String senderName; |
| | | |
| | | @ApiModelProperty(value = "接受者") |
| | | private String receiverIds; |
| | | |
| | | private String receiverNames; |
| | | |
| | | @ApiModelProperty(value = "状态0,1,2,3") |
| | | @ApiModelProperty(value = "状态0,1,2,3-0:录入 1:处理中不良品数量不为0,2:处理中不良品数量不为0,3:归档") |
| | | private Integer confirmStatus; |
| | | |
| | | @ApiModelProperty(value = "总数") |
| | |
| | | @ApiModelProperty(value = "不良产品数") |
| | | private Integer badProduct; |
| | | |
| | | @ApiModelProperty(value = "剩余未处理不良品数") |
| | | private Integer restProduct; |
| | | |
| | | @ApiModelProperty(value = "备注") |
| | | private String note; |
| | | |
| | | @TableField(exist = false) |
| | | private List<DefectiveProductsHistory> hisList; |
| | | |
| | | |
| | | } |