package com.matrix.system.hive.bean; import com.matrix.core.pojo.EntityDTO; import java.io.Serializable; import java.util.Date; import java.util.List; /** * * * @date 2016-07-19 14:52 */ public class SysCheckInfo extends EntityDTO { /** * 盘点单据状态 */ public static final String STATUS_WAITE_INPUT="待录入"; public static final String STATUS_WAITE_REVIEW="待审核"; public static final String STATUS_COMPLETE="已完成"; public static final String STATUS_REVIEW_REFUSE="审核未通过"; /** * 序号 */ private Long id; /** * 盘点编号 */ private String checkNo; /** * 盘点类型 */ private String checkType; /** * 盘点仓库id */ private Long checkStoreid; /** * 操作时间 */ private Date createDate; /** * 制单人id */ private Long makingManId; /** * 审核人id */ private Long appManId; /** * 审核日期 */ private Date checkDate; /** * 审核意见 */ private String appRemark; /** * 审核状态 */ private String checkStatus; /** * 备注 */ private String remark; /** * 盘点开始时间 */ private Date startTime; /** * 盘点结束时间 */ private Date endTime; /** * 扩展属性 */ /** * 盘点仓库 */ private String checkStoreName; /** * 制单人 */ private String makingManName; /** * 审核人 */ private String appManName; private Long shopId; private Long companyId; /** * 盘点单明细 */ private List checkDetails; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getCheckType() { return checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } public String getCheckStoreName() { return checkStoreName; } public void setCheckStoreName(String checkStoreName) { this.checkStoreName = checkStoreName; } 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 Date getCreateDate() { return createDate; } public void setCreateDate(Date createDate) { this.createDate = createDate; } public Date getCheckDate() { return checkDate; } public void setCheckDate(Date checkDate) { this.checkDate = checkDate; } public String getAppRemark() { return appRemark; } public void setAppRemark(String appRemark) { this.appRemark = appRemark; } public List getCheckDetails() { return checkDetails; } public void setCheckDetails(List checkDetails) { this.checkDetails = checkDetails; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } 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; } public String getCheckStatus() { return checkStatus; } public void setCheckStatus(String checkStatus) { this.checkStatus = checkStatus; } public String getCheckNo() { return checkNo; } public void setCheckNo(String checkNo) { this.checkNo = checkNo; } public Long getCheckStoreid() { return checkStoreid; } public void setCheckStoreid(Long checkStoreid) { this.checkStoreid = checkStoreid; } 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 Long getShopId() { return shopId; } public void setShopId(Long shopId) { this.shopId = shopId; } public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } @Override public String toString() { return "SysCheckInfo [id=" + id + ", checkNo=" + checkNo + ", checkType=" + checkType + ", checkStoreid=" + checkStoreid + ", createDate=" + createDate + ", makingManId=" + makingManId + ", appManId=" + appManId + ", checkDate=" + checkDate + ", appRemark=" + appRemark + ", checkStatus=" + checkStatus + ", remark=" + remark + ", startTime=" + startTime + ", endTime=" + endTime + ", checkStoreName=" + checkStoreName + ", makingManName=" + makingManName + ", appManName=" + appManName + ", checkDetails=" + checkDetails + "]"; } }