266 lines
6.1 KiB
Plaintext
266 lines
6.1 KiB
Plaintext
package com.bonus.rm.beans;
|
|
|
|
//入库任务
|
|
public class PutInStorageTaskBean {
|
|
private String id;
|
|
private String supId;
|
|
private String taskId; //所属任务
|
|
private String machineName; //机具名称
|
|
private String machineModel; //机具规格
|
|
private String machineStatus; //机具状态
|
|
private String typeId; //规格Id
|
|
private String putTime; //入库时间
|
|
private String putPersonId; //入库人Id
|
|
private String putPerson; //入库人
|
|
private String prePutNum; //预入库数量
|
|
private String thisPutNum; //本次入库数量
|
|
private String alPutNum; //已入库数量
|
|
private String deviceCode; //设备编码
|
|
private String isCount; //是否计数
|
|
private String isActive;
|
|
private String startTime;
|
|
private String endTime;
|
|
private String agreementId;
|
|
private String agreementCode;
|
|
private String leaseName;
|
|
private String projectName;
|
|
private String applyNumber;
|
|
private String applyTime;
|
|
private String keyWord;
|
|
private String type; //1检验任务详情
|
|
private String maModelId;
|
|
private String isSure;
|
|
private String remark;
|
|
private String isExamine;
|
|
private String checkId;
|
|
private String venderName; //机具生产厂家
|
|
private String definitionName;//任务定义名称
|
|
private String putInTime;//入库时间
|
|
private String orgId;
|
|
private String companyId;
|
|
private String value;
|
|
|
|
public String getValue() {
|
|
return value;
|
|
}
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
public String getCompanyId() {
|
|
return companyId;
|
|
}
|
|
public void setCompanyId(String companyId) {
|
|
this.companyId = companyId;
|
|
}
|
|
public String getOrgId() {
|
|
return orgId;
|
|
}
|
|
public void setOrgId(String orgId) {
|
|
this.orgId = orgId;
|
|
}
|
|
public String getVenderName() {
|
|
return venderName;
|
|
}
|
|
public void setVenderName(String venderName) {
|
|
this.venderName = venderName;
|
|
}
|
|
public String getCheckId() {
|
|
return checkId;
|
|
}
|
|
public void setCheckId(String checkId) {
|
|
this.checkId = checkId;
|
|
}
|
|
public String getIsExamine() {
|
|
return isExamine;
|
|
}
|
|
public void setIsExamine(String isExamine) {
|
|
this.isExamine = isExamine;
|
|
}
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
public String getSupId() {
|
|
return supId;
|
|
}
|
|
public void setSupId(String supId) {
|
|
this.supId = supId;
|
|
}
|
|
public String getTaskId() {
|
|
return taskId;
|
|
}
|
|
public void setTaskId(String taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
public String getMachineName() {
|
|
return machineName;
|
|
}
|
|
public void setMachineName(String machineName) {
|
|
this.machineName = machineName;
|
|
}
|
|
public String getMachineModel() {
|
|
return machineModel;
|
|
}
|
|
public void setMachineModel(String machineModel) {
|
|
this.machineModel = machineModel;
|
|
}
|
|
public String getMachineStatus() {
|
|
return machineStatus;
|
|
}
|
|
public void setMachineStatus(String machineStatus) {
|
|
this.machineStatus = machineStatus;
|
|
}
|
|
public String getTypeId() {
|
|
return typeId;
|
|
}
|
|
public void setTypeId(String typeId) {
|
|
this.typeId = typeId;
|
|
}
|
|
public String getPutTime() {
|
|
return putTime;
|
|
}
|
|
public void setPutTime(String putTime) {
|
|
this.putTime = putTime;
|
|
}
|
|
public String getPutPersonId() {
|
|
return putPersonId;
|
|
}
|
|
public void setPutPersonId(String putPersonId) {
|
|
this.putPersonId = putPersonId;
|
|
}
|
|
public String getPutPerson() {
|
|
return putPerson;
|
|
}
|
|
public void setPutPerson(String putPerson) {
|
|
this.putPerson = putPerson;
|
|
}
|
|
public String getPrePutNum() {
|
|
return prePutNum;
|
|
}
|
|
public void setPrePutNum(String prePutNum) {
|
|
this.prePutNum = prePutNum;
|
|
}
|
|
public String getThisPutNum() {
|
|
return thisPutNum;
|
|
}
|
|
public void setThisPutNum(String thisPutNum) {
|
|
this.thisPutNum = thisPutNum;
|
|
}
|
|
public String getAlPutNum() {
|
|
return alPutNum;
|
|
}
|
|
public void setAlPutNum(String alPutNum) {
|
|
this.alPutNum = alPutNum;
|
|
}
|
|
public String getDeviceCode() {
|
|
return deviceCode;
|
|
}
|
|
public void setDeviceCode(String deviceCode) {
|
|
this.deviceCode = deviceCode;
|
|
}
|
|
public String getIsCount() {
|
|
return isCount;
|
|
}
|
|
public void setIsCount(String isCount) {
|
|
this.isCount = isCount;
|
|
}
|
|
public String getIsActive() {
|
|
return isActive;
|
|
}
|
|
public void setIsActive(String isActive) {
|
|
this.isActive = isActive;
|
|
}
|
|
public String getStartTime() {
|
|
return startTime;
|
|
}
|
|
public void setStartTime(String startTime) {
|
|
this.startTime = startTime;
|
|
}
|
|
public String getEndTime() {
|
|
return endTime;
|
|
}
|
|
public void setEndTime(String endTime) {
|
|
this.endTime = endTime;
|
|
}
|
|
public String getAgreementId() {
|
|
return agreementId;
|
|
}
|
|
public void setAgreementId(String agreementId) {
|
|
this.agreementId = agreementId;
|
|
}
|
|
public String getAgreementCode() {
|
|
return agreementCode;
|
|
}
|
|
public void setAgreementCode(String agreementCode) {
|
|
this.agreementCode = agreementCode;
|
|
}
|
|
public String getLeaseName() {
|
|
return leaseName;
|
|
}
|
|
public void setLeaseName(String leaseName) {
|
|
this.leaseName = leaseName;
|
|
}
|
|
public String getProjectName() {
|
|
return projectName;
|
|
}
|
|
public void setProjectName(String projectName) {
|
|
this.projectName = projectName;
|
|
}
|
|
public String getApplyNumber() {
|
|
return applyNumber;
|
|
}
|
|
public void setApplyNumber(String applyNumber) {
|
|
this.applyNumber = applyNumber;
|
|
}
|
|
public String getApplyTime() {
|
|
return applyTime;
|
|
}
|
|
public void setApplyTime(String applyTime) {
|
|
this.applyTime = applyTime;
|
|
}
|
|
public String getKeyWord() {
|
|
return keyWord;
|
|
}
|
|
public void setKeyWord(String keyWord) {
|
|
this.keyWord = keyWord;
|
|
}
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
public String getMaModelId() {
|
|
return maModelId;
|
|
}
|
|
public void setMaModelId(String maModelId) {
|
|
this.maModelId = maModelId;
|
|
}
|
|
public String getIsSure() {
|
|
return isSure;
|
|
}
|
|
public void setIsSure(String isSure) {
|
|
this.isSure = isSure;
|
|
}
|
|
public String getDefinitionName() {
|
|
return definitionName;
|
|
}
|
|
public void setDefinitionName(String definitionName) {
|
|
this.definitionName = definitionName;
|
|
}
|
|
public String getPutInTime() {
|
|
return putInTime;
|
|
}
|
|
public void setPutInTime(String putInTime) {
|
|
this.putInTime = putInTime;
|
|
}
|
|
|
|
} |