| | |
| | | package com.aps.job.domain; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | |
| | | |
| | | /** 同步主键 */ |
| | | @Excel(name = "同步主键") |
| | | @JsonProperty("ID") |
| | | private String orderId; |
| | | |
| | | /** 单据号 */ |
| | |
| | | |
| | | /** 工作中心 当前在制的工序 */ |
| | | @Excel(name = "工作中心 当前在制的工序") |
| | | private Integer workCenter; |
| | | private String workCenter; |
| | | |
| | | /** 所属部门 */ |
| | | @Excel(name = "所属部门") |
| | |
| | | /** 删除标志(0代表存在 2代表删除) */ |
| | | @Excel(name = "删除标志", readConverterExp = "0=代表存在,2=代表删除") |
| | | private String delFlag; |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | private String orgCode; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | |
| | | return opNum; |
| | | } |
| | | |
| | | public void setWorkCenter(Integer workCenter) |
| | | public void setWorkCenter(String workCenter) |
| | | { |
| | | this.workCenter = workCenter; |
| | | } |
| | | |
| | | public Integer getWorkCenter() |
| | | public String getWorkCenter() |
| | | { |
| | | return workCenter; |
| | | } |
| | |
| | | { |
| | | return delFlag; |
| | | } |
| | | public String getProcessStatus() { |
| | | return processStatus; |
| | | } |
| | | |
| | | public void setProcessStatus(String processStatus) { |
| | | this.processStatus = processStatus; |
| | | } |
| | | |
| | | private String processStatus; |
| | | |
| | | public String getOrgCode() { |
| | | return orgCode; |
| | | } |
| | | |
| | | public void setOrgCode(String orgCode) { |
| | | this.orgCode = orgCode; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |