| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | * 设 计 工 程 变 更 申 请 调 查 表(ECR) |
| | | */ |
| | | @TableName("tb_ecr") |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | public class ECR { |
| | | private Integer id; |
| | | private String number; |
| | | @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
| | | private Date proposeDate; |
| | | @TableField(exist = false) |
| | | private String proposeWebsocket; |
| | | private String proposer; |
| | | private String changeDescription; |
| | | private String code; |
| | | private String model; |
| | | private String subCode; |
| | | private String subModel; |
| | | private String parentModel; |
| | | private String solution; |
| | | private Date createTime; |
| | | private String excelFile; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | |
| | | this.proposeDate = proposeDate; |
| | | } |
| | | |
| | | public String getProposeWebsocket() { |
| | | return proposeWebsocket; |
| | | } |
| | | |
| | | public void setProposeWebsocket(String proposeWebsocket) { |
| | | this.proposeWebsocket = proposeWebsocket; |
| | | } |
| | | |
| | | public String getProposer() { |
| | | return proposer; |
| | | } |
| | |
| | | this.changeDescription = changeDescription; |
| | | } |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | public String getSubCode() { |
| | | return subCode; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | public void setSubCode(String subCode) { |
| | | this.subCode = subCode; |
| | | } |
| | | |
| | | public String getModel() { |
| | | return model; |
| | | public String getSubModel() { |
| | | return subModel; |
| | | } |
| | | |
| | | public void setModel(String model) { |
| | | this.model = model; |
| | | public void setSubModel(String subModel) { |
| | | this.subModel = subModel; |
| | | } |
| | | |
| | | public String getParentModel() { |
| | | return parentModel; |
| | | } |
| | | |
| | | public void setParentModel(String parentModel) { |
| | | this.parentModel = parentModel; |
| | | } |
| | | |
| | | public String getSolution() { |
| | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public String getExcelFile() { |
| | | return excelFile; |
| | | } |
| | | |
| | | public void setExcelFile(String excelFile) { |
| | | this.excelFile = excelFile; |
| | | } |
| | | } |