304 lines
6.6 KiB
Plaintext
304 lines
6.6 KiB
Plaintext
|
|
package com.bonus.sq.beans;
|
|||
|
|
/**
|
|||
|
|
* 设备状态查询
|
|||
|
|
* @author xj
|
|||
|
|
*
|
|||
|
|
*
|
|||
|
|
*/
|
|||
|
|
public class MachineStatusQueryBean {
|
|||
|
|
|
|||
|
|
private String id;
|
|||
|
|
private String supId;
|
|||
|
|
private String agreementId;
|
|||
|
|
private String taskId; //所属任务
|
|||
|
|
private String machineName; //机具名称
|
|||
|
|
private String machineModel; //机具规格
|
|||
|
|
private String machineStatus; //机具状态
|
|||
|
|
private String typeId; //规格Id
|
|||
|
|
private String buyPrice; //原值
|
|||
|
|
private String leasePrice; //租赁jiag
|
|||
|
|
private String deviceCode; //设备编码
|
|||
|
|
private String isCount; //是否计数
|
|||
|
|
private String isActive;
|
|||
|
|
private String startTime;
|
|||
|
|
private String endTime;
|
|||
|
|
private String agreementCode;
|
|||
|
|
private String leaseName;
|
|||
|
|
private String projectName;
|
|||
|
|
private String applyNumber;
|
|||
|
|
private String applyTime;
|
|||
|
|
private String keyWord;
|
|||
|
|
private String type; //任务类型
|
|||
|
|
private String isSure;
|
|||
|
|
private String storageNum; //在库
|
|||
|
|
private String leaseNum; //在用
|
|||
|
|
private String repairNum; //在修
|
|||
|
|
private String scrapNum; //报废
|
|||
|
|
private String loseNum; //丢失
|
|||
|
|
private String totalStorageNum; //总保有量
|
|||
|
|
private String waitInputNum; //待入库量
|
|||
|
|
private String pMachineName; //最外侧机具名称
|
|||
|
|
private String warnValue;
|
|||
|
|
private String companyId;
|
|||
|
|
private String checkNum;
|
|||
|
|
/**
|
|||
|
|
* 是否收藏(0 是,1 否)
|
|||
|
|
*/
|
|||
|
|
private Integer isCollect;
|
|||
|
|
private Integer userId;
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
public Integer getIsCollect() {
|
|||
|
|
return isCollect;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setIsCollect(Integer isCollect) {
|
|||
|
|
this.isCollect = isCollect;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public Integer getUserId() {
|
|||
|
|
return userId;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setUserId(Integer userId) {
|
|||
|
|
this.userId = userId;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String getCheckNum() {
|
|||
|
|
return checkNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setCheckNum(String checkNum) {
|
|||
|
|
this.checkNum = checkNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String getCompanyId() {
|
|||
|
|
return companyId;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setCompanyId(String companyId) {
|
|||
|
|
this.companyId = companyId;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String getWarnValue() {
|
|||
|
|
return warnValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setWarnValue(String warnValue) {
|
|||
|
|
this.warnValue = warnValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String getpMachineName() {
|
|||
|
|
return pMachineName;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setpMachineName(String pMachineName) {
|
|||
|
|
this.pMachineName = pMachineName;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String getWaitInputNum() {
|
|||
|
|
return waitInputNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public void setWaitInputNum(String waitInputNum) {
|
|||
|
|
this.waitInputNum = waitInputNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public MachineStatusQueryBean(){
|
|||
|
|
super();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public MachineStatusQueryBean(String storageNum,String leaseNum,String repairNum,String checkNum,String scrapNum,String loseNum,String waitInputNum,String totalStorageNum) {
|
|||
|
|
super();
|
|||
|
|
this.storageNum = storageNum;
|
|||
|
|
this.leaseNum = leaseNum;
|
|||
|
|
this.repairNum = repairNum;
|
|||
|
|
this.checkNum = checkNum;
|
|||
|
|
this.scrapNum = scrapNum;
|
|||
|
|
this.loseNum = loseNum;
|
|||
|
|
this.waitInputNum = waitInputNum;
|
|||
|
|
this.totalStorageNum = totalStorageNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
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 getAgreementId() {
|
|||
|
|
return agreementId;
|
|||
|
|
}
|
|||
|
|
public void setAgreementId(String agreementId) {
|
|||
|
|
this.agreementId = agreementId;
|
|||
|
|
}
|
|||
|
|
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 getBuyPrice() {
|
|||
|
|
return buyPrice;
|
|||
|
|
}
|
|||
|
|
public void setBuyPrice(String buyPrice) {
|
|||
|
|
this.buyPrice = buyPrice;
|
|||
|
|
}
|
|||
|
|
public String getLeasePrice() {
|
|||
|
|
return leasePrice;
|
|||
|
|
}
|
|||
|
|
public void setLeasePrice(String leasePrice) {
|
|||
|
|
this.leasePrice = leasePrice;
|
|||
|
|
}
|
|||
|
|
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 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 getIsSure() {
|
|||
|
|
return isSure;
|
|||
|
|
}
|
|||
|
|
public void setIsSure(String isSure) {
|
|||
|
|
this.isSure = isSure;
|
|||
|
|
}
|
|||
|
|
public String getStorageNum() {
|
|||
|
|
return storageNum;
|
|||
|
|
}
|
|||
|
|
public void setStorageNum(String storageNum) {
|
|||
|
|
this.storageNum = storageNum;
|
|||
|
|
}
|
|||
|
|
public String getLeaseNum() {
|
|||
|
|
return leaseNum;
|
|||
|
|
}
|
|||
|
|
public void setLeaseNum(String leaseNum) {
|
|||
|
|
this.leaseNum = leaseNum;
|
|||
|
|
}
|
|||
|
|
public String getRepairNum() {
|
|||
|
|
return repairNum;
|
|||
|
|
}
|
|||
|
|
public void setRepairNum(String repairNum) {
|
|||
|
|
this.repairNum = repairNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public String getScrapNum() {
|
|||
|
|
return scrapNum;
|
|||
|
|
}
|
|||
|
|
public void setScrapNum(String scrapNum) {
|
|||
|
|
this.scrapNum = scrapNum;
|
|||
|
|
}
|
|||
|
|
public String getLoseNum() {
|
|||
|
|
return loseNum;
|
|||
|
|
}
|
|||
|
|
public void setLoseNum(String loseNum) {
|
|||
|
|
this.loseNum = loseNum;
|
|||
|
|
}
|
|||
|
|
public String getTotalStorageNum() {
|
|||
|
|
return totalStorageNum;
|
|||
|
|
}
|
|||
|
|
public void setTotalStorageNum(String totalStorageNum) {
|
|||
|
|
this.totalStorageNum = totalStorageNum;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|