计量设备月检验报表
parent
efe80d28db
commit
f28c425816
@ -0,0 +1,49 @@
|
||||
package com.op.device.domain.query;
|
||||
|
||||
/**
|
||||
* remark
|
||||
*
|
||||
* @author 019117
|
||||
* @date
|
||||
*/
|
||||
public class EquOrderMonthQuery {
|
||||
|
||||
/**
|
||||
* 设备编号
|
||||
* **/
|
||||
private String equipmentCode;
|
||||
|
||||
/**
|
||||
* 日期
|
||||
* **/
|
||||
private String queryDate;
|
||||
|
||||
/**
|
||||
* 计划类型
|
||||
* **/
|
||||
private String planType;
|
||||
|
||||
public String getEquipmentCode() {
|
||||
return equipmentCode;
|
||||
}
|
||||
|
||||
public void setEquipmentCode(String equipmentCode) {
|
||||
this.equipmentCode = equipmentCode;
|
||||
}
|
||||
|
||||
public String getQueryDate() {
|
||||
return queryDate;
|
||||
}
|
||||
|
||||
public void setQueryDate(String queryDate) {
|
||||
this.queryDate = queryDate;
|
||||
}
|
||||
|
||||
public String getPlanType() {
|
||||
return planType;
|
||||
}
|
||||
|
||||
public void setPlanType(String planType) {
|
||||
this.planType = planType;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,88 @@
|
||||
package com.op.device.domain.vo;
|
||||
|
||||
/**
|
||||
* remark
|
||||
*
|
||||
* @author 019117
|
||||
* @date
|
||||
*/
|
||||
public class EquOrderMonthVo {
|
||||
|
||||
/**
|
||||
* 检查项目
|
||||
* **/
|
||||
private String checkItem;
|
||||
|
||||
/**
|
||||
* 检查日期
|
||||
* **/
|
||||
private String checkDate;
|
||||
|
||||
/**
|
||||
* 检查结果
|
||||
* **/
|
||||
private String checkResult;
|
||||
|
||||
/**
|
||||
* 检查人员
|
||||
* **/
|
||||
private String checkPerson;
|
||||
|
||||
/**
|
||||
* 确认人员
|
||||
* **/
|
||||
private String confirmPerson;
|
||||
|
||||
/**
|
||||
* 异常处理情况
|
||||
* **/
|
||||
private String exceptionHandle;
|
||||
|
||||
public String getCheckItem() {
|
||||
return checkItem;
|
||||
}
|
||||
|
||||
public void setCheckItem(String checkItem) {
|
||||
this.checkItem = checkItem;
|
||||
}
|
||||
|
||||
public String getCheckDate() {
|
||||
return checkDate;
|
||||
}
|
||||
|
||||
public void setCheckDate(String checkDate) {
|
||||
this.checkDate = checkDate;
|
||||
}
|
||||
|
||||
public String getCheckResult() {
|
||||
return checkResult;
|
||||
}
|
||||
|
||||
public void setCheckResult(String checkResult) {
|
||||
this.checkResult = checkResult;
|
||||
}
|
||||
|
||||
public String getCheckPerson() {
|
||||
return checkPerson;
|
||||
}
|
||||
|
||||
public void setCheckPerson(String checkPerson) {
|
||||
this.checkPerson = checkPerson;
|
||||
}
|
||||
|
||||
public String getConfirmPerson() {
|
||||
return confirmPerson;
|
||||
}
|
||||
|
||||
public void setConfirmPerson(String confirmPerson) {
|
||||
this.confirmPerson = confirmPerson;
|
||||
}
|
||||
|
||||
public String getExceptionHandle() {
|
||||
return exceptionHandle;
|
||||
}
|
||||
|
||||
public void setExceptionHandle(String exceptionHandle) {
|
||||
this.exceptionHandle = exceptionHandle;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue