| | |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.sql.Timestamp; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 管路手工气体工单数据对象 aps_gas_pipeline_mo |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划完工日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @Schema(description = "计划完工日期") |
| | | private Timestamp planEnd; |
| | | private Date planEnd; |
| | | |
| | | /** 数量 */ |
| | | @Excel(name = "数量") |
| | | @Schema(description = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | |
| | | public void setMo(String mo) |
| | | { |
| | | this.mo = mo; |
| | | } |
| | | |
| | | public String getMo() |
| | | { |
| | | return mo; |
| | | } |
| | | |
| | | public void setFactory(String factory) |
| | | { |
| | | this.factory = factory; |
| | | } |
| | | |
| | | public String getFactory() |
| | | { |
| | | return factory; |
| | | } |
| | | |
| | | public void setMaterialCode(String materialCode) |
| | | { |
| | | this.materialCode = materialCode; |
| | | } |
| | | |
| | | public String getMaterialCode() |
| | | { |
| | | return materialCode; |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("mo", getMo()) |
| | | .append("factory", getFactory()) |
| | | .append("materialCode", getMaterialCode()) |
| | | .append("planEnd", getPlanEnd()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .toString(); |
| | | } |
| | | } |