233 lines
5.0 KiB
Plaintext
233 lines
5.0 KiB
Plaintext
package com.bonus.newInput.beans;
|
|
|
|
/**
|
|
* 机具验收
|
|
*
|
|
* @author zjshi
|
|
*/
|
|
public class MachinesAcceptBean extends InputDetailsBean {
|
|
|
|
private String taskId;//任务ID
|
|
private String maTypeId;//机具类型ID
|
|
private String checkTime;//验收时间
|
|
private String checkCode;//验收编号
|
|
private String checkNum;//验收数量
|
|
private String exteriorCheck;//外观检查
|
|
private String testCheck;//试验检验
|
|
private String checkConclusion;//验收结论
|
|
private String matData;//相关配套资料
|
|
private String buyer;//采购员
|
|
private String storekeeper;//库管员
|
|
private String leaseManager;//租赁科部门负责人
|
|
private String repaitman;//修试人员
|
|
private String repairManageer;//修试科部门负责人
|
|
private String checker;//检验员
|
|
private String safetyManager;//安全技术科部门负责人
|
|
private String leader;//分公司领导
|
|
private String isTest;
|
|
private String aboutFile;
|
|
private String buyNumber;
|
|
private String buyTime;
|
|
|
|
public String getBuyNumber() {
|
|
return buyNumber;
|
|
}
|
|
|
|
public void setBuyNumber(String buyNumber) {
|
|
this.buyNumber = buyNumber;
|
|
}
|
|
|
|
public String getBuyTime() {
|
|
return buyTime;
|
|
}
|
|
|
|
public void setBuyTime(String buyTime) {
|
|
this.buyTime = buyTime;
|
|
}
|
|
|
|
public String getTaskId() {
|
|
return taskId;
|
|
}
|
|
|
|
public void setTaskId(String taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
|
|
public String getMaTypeId() {
|
|
return maTypeId;
|
|
}
|
|
|
|
public void setMaTypeId(String maTypeId) {
|
|
this.maTypeId = maTypeId;
|
|
}
|
|
|
|
public String getCheckTime() {
|
|
return checkTime;
|
|
}
|
|
|
|
public void setCheckTime(String checkTime) {
|
|
this.checkTime = checkTime;
|
|
}
|
|
|
|
public String getCheckCode() {
|
|
return checkCode;
|
|
}
|
|
|
|
public void setCheckCode(String checkCode) {
|
|
this.checkCode = checkCode;
|
|
}
|
|
|
|
public String getCheckNum() {
|
|
return checkNum;
|
|
}
|
|
|
|
public void setCheckNum(String checkNum) {
|
|
this.checkNum = checkNum;
|
|
}
|
|
|
|
public String getExteriorCheck() {
|
|
return exteriorCheck;
|
|
}
|
|
|
|
public void setExteriorCheck(String exteriorCheck) {
|
|
this.exteriorCheck = exteriorCheck;
|
|
}
|
|
|
|
public String getTestCheck() {
|
|
return testCheck;
|
|
}
|
|
|
|
public void setTestCheck(String testCheck) {
|
|
this.testCheck = testCheck;
|
|
}
|
|
|
|
public String getCheckConclusion() {
|
|
return checkConclusion;
|
|
}
|
|
|
|
public void setCheckConclusion(String checkConclusion) {
|
|
this.checkConclusion = checkConclusion;
|
|
}
|
|
|
|
public String getMatData() {
|
|
return matData;
|
|
}
|
|
|
|
public void setMatData(String matData) {
|
|
this.matData = matData;
|
|
}
|
|
|
|
public String getBuyer() {
|
|
return buyer;
|
|
}
|
|
|
|
public void setBuyer(String buyer) {
|
|
this.buyer = buyer;
|
|
}
|
|
|
|
public String getStorekeeper() {
|
|
return storekeeper;
|
|
}
|
|
|
|
public void setStorekeeper(String storekeeper) {
|
|
this.storekeeper = storekeeper;
|
|
}
|
|
|
|
public String getLeaseManager() {
|
|
return leaseManager;
|
|
}
|
|
|
|
public void setLeaseManager(String leaseManager) {
|
|
this.leaseManager = leaseManager;
|
|
}
|
|
|
|
public String getRepaitman() {
|
|
return repaitman;
|
|
}
|
|
|
|
public void setRepaitman(String repaitman) {
|
|
this.repaitman = repaitman;
|
|
}
|
|
|
|
public String getRepairManageer() {
|
|
return repairManageer;
|
|
}
|
|
|
|
public void setRepairManageer(String repairManageer) {
|
|
this.repairManageer = repairManageer;
|
|
}
|
|
|
|
public String getChecker() {
|
|
return checker;
|
|
}
|
|
|
|
public void setChecker(String checker) {
|
|
this.checker = checker;
|
|
}
|
|
|
|
public String getSafetyManager() {
|
|
return safetyManager;
|
|
}
|
|
|
|
public void setSafetyManager(String safetyManager) {
|
|
this.safetyManager = safetyManager;
|
|
}
|
|
|
|
public String getLeader() {
|
|
return leader;
|
|
}
|
|
|
|
public void setLeader(String leader) {
|
|
this.leader = leader;
|
|
}
|
|
|
|
public String getIsTest() {
|
|
return isTest;
|
|
}
|
|
|
|
public void setIsTest(String isTest) {
|
|
this.isTest = isTest;
|
|
}
|
|
|
|
public String getAboutFile() {
|
|
return aboutFile;
|
|
}
|
|
|
|
public void setAboutFile(String aboutFile) {
|
|
this.aboutFile = aboutFile;
|
|
}
|
|
|
|
public MachinesAcceptBean(String taskId, String maTypeId, String checkTime, String checkCode, String checkNum,
|
|
String exteriorCheck, String testCheck, String checkConclusion, String matData) {
|
|
super();
|
|
this.taskId = taskId;
|
|
this.maTypeId = maTypeId;
|
|
this.checkTime = checkTime;
|
|
this.checkCode = checkCode;
|
|
this.checkNum = checkNum;
|
|
this.exteriorCheck = exteriorCheck;
|
|
this.testCheck = testCheck;
|
|
this.checkConclusion = checkConclusion;
|
|
this.matData = matData;
|
|
}
|
|
|
|
public MachinesAcceptBean(){}
|
|
|
|
/* (non-Javadoc)
|
|
* @see java.lang.Object#toString()
|
|
*/
|
|
@Override
|
|
public String toString() {
|
|
return "MachinesAcceptBean [taskId=" + taskId + ", maTypeId=" + maTypeId + ", checkTime=" + checkTime
|
|
+ ", checkCode=" + checkCode + ", checkNum=" + checkNum + ", exteriorCheck=" + exteriorCheck
|
|
+ ", testCheck=" + testCheck + ", checkConclusion=" + checkConclusion + ", matData=" + matData
|
|
+ ", buyer=" + buyer + ", storekeeper=" + storekeeper + ", leaseManager=" + leaseManager
|
|
+ ", repaitman=" + repaitman + ", repairManageer=" + repairManageer + ", checker=" + checker
|
|
+ ", safetyManager=" + safetyManager + ", leader=" + leader + ", isTest=" + isTest + ", aboutFile="
|
|
+ aboutFile + ", buyNumber=" + buyNumber + ", buyTime=" + buyTime + "]";
|
|
}
|
|
|
|
|
|
|
|
}
|