| | |
| | | package com.aps.core.domain; |
| | | |
| | | import java.util.Date; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 工艺路线对象 aps_process_route |
| | |
| | | private Long completedCount; |
| | | /** 废弃数量 */ |
| | | @Excel(name = "废弃数量") |
| | | private Long discardCount; |
| | | private BigDecimal discardCount; |
| | | /** 集成日期 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | /** 工厂 */ |
| | | // @Excel(name = "工厂") |
| | | private String plant; |
| | | |
| | | @Excel(name = "标准工时") |
| | | private Long standardTime; |
| | | private BigDecimal standardTime; |
| | | |
| | | @Excel(name = "工序排序") |
| | | private Long processOrder; |
| | | |
| | | /** 工序ID */ |
| | | private String opId; |
| | | |
| | | /** 加工数量 */ |
| | | @Excel(name = "加工数量") |
| | | private BigDecimal processQty; |
| | | |
| | | /** 工序状态 */ |
| | | private String opStatus; |
| | | |
| | | /** 账套代码 */ |
| | | private String orgCode; |
| | | |
| | | /** 删除标志(0代表存在 2代表删除) */ |
| | | private String delFlag; |
| | | |
| | | /** 工作中心 */ |
| | | private String workCenter; |
| | | |
| | | public void setId(String id) |
| | | { |
| | |
| | | return delFlag; |
| | | } |
| | | |
| | | public BigDecimal getDiscardCount() { |
| | | return discardCount; |
| | | } |
| | | |
| | | public void setDiscardCount(BigDecimal discardCount) { |
| | | this.discardCount = discardCount; |
| | | } |
| | | |
| | | public BigDecimal getStandardTime() { |
| | | return standardTime; |
| | | } |
| | | |
| | | public void setStandardTime(BigDecimal standardTime) { |
| | | this.standardTime = standardTime; |
| | | } |
| | | |
| | | public Long getProcessOrder() { |
| | | return processOrder; |
| | | } |
| | | |
| | | public void setProcessOrder(Long processOrder) { |
| | | this.processOrder = processOrder; |
| | | } |
| | | |
| | | public String getOpId() { |
| | | return opId; |
| | | } |
| | | |
| | | public void setOpId(String opId) { |
| | | this.opId = opId; |
| | | } |
| | | |
| | | public BigDecimal getProcessQty() { |
| | | return processQty; |
| | | } |
| | | |
| | | public void setProcessQty(BigDecimal processQty) { |
| | | this.processQty = processQty; |
| | | } |
| | | |
| | | public String getOpStatus() { |
| | | return opStatus; |
| | | } |
| | | |
| | | public void setOpStatus(String opStatus) { |
| | | this.opStatus = opStatus; |
| | | } |
| | | |
| | | public String getOrgCode() { |
| | | return orgCode; |
| | | } |
| | | |
| | | public void setOrgCode(String orgCode) { |
| | | this.orgCode = orgCode; |
| | | } |
| | | |
| | | public String getWorkCenter() { |
| | | return workCenter; |
| | | } |
| | | |
| | | public void setWorkCenter(String workCenter) { |
| | | this.workCenter = workCenter; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("workCenter", getWorkCenter()) |
| | | .toString(); |
| | | } |
| | | |
| | | public Long getDiscardCount() { |
| | | return discardCount; |
| | | } |
| | | |
| | | public void setDiscardCount(Long discardCount) { |
| | | this.discardCount = discardCount; |
| | | } |
| | | |
| | | public Long getStandardTime() { |
| | | return standardTime; |
| | | } |
| | | |
| | | public void setStandardTime(Long standardTime) { |
| | | this.standardTime = standardTime; |
| | | } |
| | | |
| | | public Long getProcessOrder() { |
| | | return processOrder; |
| | | } |
| | | |
| | | public void setProcessOrder(Long processOrder) { |
| | | this.processOrder = processOrder; |
| | | } |
| | | } |