292 lines
6.6 KiB
Plaintext
292 lines
6.6 KiB
Plaintext
|
|
package com.bonus.pis.beans;
|
||
|
|
|
||
|
|
//import com.sun.org.apache.regexp.internal.recompile;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 入库
|
||
|
|
* @author xj
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public class PutInStorageBean {
|
||
|
|
|
||
|
|
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; //3入库任务详情
|
||
|
|
private String maModelId;
|
||
|
|
private String isSure;
|
||
|
|
private String isFinish;
|
||
|
|
private String modelId;
|
||
|
|
private String operationTime;
|
||
|
|
private String checkId;
|
||
|
|
private String inputNumber;//入库单号
|
||
|
|
private String definitionId;
|
||
|
|
private String companyName;
|
||
|
|
private String companyId;
|
||
|
|
private String remark;
|
||
|
|
private String deviceCodes;
|
||
|
|
private String rmStatus;
|
||
|
|
|
||
|
|
public String getRemark() {
|
||
|
|
return remark;
|
||
|
|
}
|
||
|
|
public void setRemark(String remark) {
|
||
|
|
this.remark = remark;
|
||
|
|
}
|
||
|
|
public String getCompanyId() {
|
||
|
|
return companyId;
|
||
|
|
}
|
||
|
|
public void setCompanyId(String companyId) {
|
||
|
|
this.companyId = companyId;
|
||
|
|
}
|
||
|
|
public String getCompanyName() {
|
||
|
|
return companyName;
|
||
|
|
}
|
||
|
|
public void setCompanyName(String companyName) {
|
||
|
|
this.companyName = companyName;
|
||
|
|
}
|
||
|
|
public String getDefinitionId() {
|
||
|
|
return definitionId;
|
||
|
|
}
|
||
|
|
public void setDefinitionId(String definitionId) {
|
||
|
|
this.definitionId = definitionId;
|
||
|
|
}
|
||
|
|
public String getInputNumber() {
|
||
|
|
return inputNumber;
|
||
|
|
}
|
||
|
|
public void setInputNumber(String inputNumber) {
|
||
|
|
this.inputNumber = inputNumber;
|
||
|
|
}
|
||
|
|
public String getModelId() {
|
||
|
|
return modelId;
|
||
|
|
}
|
||
|
|
public void setModelId(String modelId) {
|
||
|
|
this.modelId = modelId;
|
||
|
|
}
|
||
|
|
public String getOperationTime() {
|
||
|
|
return operationTime;
|
||
|
|
}
|
||
|
|
public void setOperationTime(String operationTime) {
|
||
|
|
this.operationTime = operationTime;
|
||
|
|
}
|
||
|
|
public String getCheckId() {
|
||
|
|
return checkId;
|
||
|
|
}
|
||
|
|
public void setCheckId(String checkId) {
|
||
|
|
this.checkId = checkId;
|
||
|
|
}
|
||
|
|
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 getIsFinish() {
|
||
|
|
return isFinish;
|
||
|
|
}
|
||
|
|
public void setIsFinish(String isFinish) {
|
||
|
|
this.isFinish = isFinish;
|
||
|
|
}
|
||
|
|
public String getDeviceCodes() {
|
||
|
|
return deviceCodes;
|
||
|
|
}
|
||
|
|
public void setDeviceCodes(String deviceCodes) {
|
||
|
|
this.deviceCodes = deviceCodes;
|
||
|
|
}
|
||
|
|
public String getRmStatus() {
|
||
|
|
return rmStatus;
|
||
|
|
}
|
||
|
|
public void setRmStatus(String rmStatus) {
|
||
|
|
this.rmStatus = rmStatus;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|