package com.matrix.system.hive.bean; import com.matrix.core.tools.DateUtil; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; import java.util.List; /** * * @date 2016-07-18 18:11 */ public class SysAllottedInfo implements Serializable{ private static final long serialVersionUID = 1L; /** * 序号 */ private Long id; /** * 调拨编号 */ private String allottedId; /** * 调拨类型 */ private String allottedType; /** *调入仓库id */ private Long allottedInstoreId; /** * 调出仓库id */ private Long allottedOutstoreId; /** * 调拨状态 */ private String receiveTotal; /** * 制单人id */ private Long makingManId; /** * 审核人id */ private Long appManId; /** * 调拨日期 */ @DateTimeFormat(pattern= DateUtil.DATE_FORMAT_MM) private Date allottedDate; /** * 调拨备注 */ private String allottedRemark; /** * 审核意见 */ private String appRemark; /** * 调拨总数 */ private Long allottedTotal; /** * 审核状态 */ private String checkStatus; /** * 扩展属性 */ /** * 调拨明细 */ List sysAllotDetails; /** *调入仓库 */ private String allottedInstoreName; /** * 调出仓库 */ private String allottedOutstoreName; /** * 制单人 */ private String makingManName; /** * 调拨总金额 */ private Double amountPrice; /** * 收货总金额 */ private Double receivedPrice; /** * 所属公司id */ private Long companyId; public Double getReceivedPrice() { return receivedPrice; } public void setReceivedPrice(Double receivedPrice) { this.receivedPrice = receivedPrice; } public Double getAmountPrice() { return amountPrice; } public void setAmountPrice(Double amountPrice) { this.amountPrice = amountPrice; } /** * 审核人 */ private String appManName; @DateTimeFormat(pattern=DateUtil.DATE_FORMAT_MM) private Date startTime; @DateTimeFormat(pattern=DateUtil.DATE_FORMAT_MM) private Date endTime; public Long getId() { return id; } public void setId(Long id) { this.id=id; } public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } public String getAllottedType() { return allottedType; } public void setAllottedType(String allottedType) { this.allottedType=allottedType; } public String getAllottedId() { return allottedId; } public void setAllottedId(String allottedId) { this.allottedId = allottedId; } public Long getAllottedInstoreId() { return allottedInstoreId; } public void setAllottedInstoreId(Long allottedInstoreId) { this.allottedInstoreId = allottedInstoreId; } public Long getAllottedOutstoreId() { return allottedOutstoreId; } public void setAllottedOutstoreId(Long allottedOutstoreId) { this.allottedOutstoreId = allottedOutstoreId; } public Long getMakingManId() { return makingManId; } public void setMakingManId(Long makingManId) { this.makingManId = makingManId; } public Long getAppManId() { return appManId; } public void setAppManId(Long appManId) { this.appManId = appManId; } public String getReceiveTotal() { return receiveTotal; } public void setReceiveTotal(String receiveTotal) { this.receiveTotal = receiveTotal; } public Date getAllottedDate() { return allottedDate; } public void setAllottedDate(Date allottedDate) { this.allottedDate=allottedDate; } public String getAllottedRemark() { return allottedRemark; } public void setAllottedRemark(String allottedRemark) { this.allottedRemark=allottedRemark; } public String getAppRemark() { return appRemark; } public void setAppRemark(String appRemark) { this.appRemark=appRemark; } public Long getAllottedTotal() { return allottedTotal; } public void setAllottedTotal(Long allottedTotal) { this.allottedTotal=allottedTotal; } public List getSysAllotDetails() { return sysAllotDetails; } public void setSysAllotDetails(List sysAllotDetails) { this.sysAllotDetails = sysAllotDetails; } public String getAllottedInstoreName() { return allottedInstoreName; } public void setAllottedInstoreName(String allottedInstoreName) { this.allottedInstoreName = allottedInstoreName; } public String getAllottedOutstoreName() { return allottedOutstoreName; } public void setAllottedOutstoreName(String allottedOutstoreName) { this.allottedOutstoreName = allottedOutstoreName; } public String getMakingManName() { return makingManName; } public void setMakingManName(String makingManName) { this.makingManName = makingManName; } public String getAppManName() { return appManName; } public void setAppManName(String appManName) { this.appManName = appManName; } public String getCheckStatus() { return checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public Date getStartTime() { return startTime; } public void setStartTime(Date startTime) { this.startTime = startTime; } public Date getEndTime() { return endTime; } public void setEndTime(Date endTime) { this.endTime = endTime; } @Override public String toString() { return "SysAllottedInfo [id=" + id + ", allottedId=" + allottedId + ", allottedType=" + allottedType + ", allottedInstoreId=" + allottedInstoreId + ", allottedOutstoreId=" + ", makingManId=" + makingManId + ", appManId=" + appManId + ", allottedDate=" + allottedDate + ", allottedRemark=" + allottedRemark + ", appRemark=" + appRemark + ", allottedTotal=" + allottedTotal + ", sysAllotDetails=" + sysAllotDetails + ", allottedInstoreName=" + allottedInstoreName + ", allottedOutstoreName=" + allottedOutstoreName + ", makingManName=" + makingManName + ", appManName=" + appManName + "]"; } }