设备综合报表
parent
4c7b2aae74
commit
8452e5b19e
@ -0,0 +1,477 @@
|
||||
package com.op.device.domain.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.device.domain.EquCheckItemDetail;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
// 检查项维护页面DTO
|
||||
public class SummaryReportDTO {
|
||||
/** 主键 */
|
||||
private String itemId ;
|
||||
/** 检查项编码 */
|
||||
private String itemCode ;
|
||||
/** 检查项名称 */
|
||||
private String itemName ;
|
||||
/** 检查项方法/工具 */
|
||||
private String itemMethod ;
|
||||
/** 维护类型编码 */
|
||||
private String itemType ;
|
||||
/** 维护类型名称 */
|
||||
private String itemTypeName ;
|
||||
/** 检查项备注 */
|
||||
private String itemRemark ;
|
||||
// 检查工具
|
||||
private String itemTools;
|
||||
//标准类型
|
||||
private String standardType;
|
||||
//标准名称
|
||||
private String standardName;
|
||||
// 循环周期类型
|
||||
private String itemLoopType;
|
||||
// 循环周期
|
||||
private int itemLoop;
|
||||
/** 主键 */
|
||||
private String orderId;
|
||||
//设备
|
||||
private String equipmentCode;
|
||||
/** 维修前达标 */
|
||||
private String detailReach;
|
||||
//维修后是否达标
|
||||
private String repairReach;
|
||||
/** 主键 */
|
||||
private String detailId ;
|
||||
/** 主键 */
|
||||
private String id ;
|
||||
|
||||
//1号
|
||||
private String one ;
|
||||
//2号
|
||||
private String two ;
|
||||
//3号
|
||||
private String three ;
|
||||
//4号
|
||||
private String four ;
|
||||
//5号
|
||||
private String five ;
|
||||
//6号
|
||||
private String six ;
|
||||
//7号
|
||||
private String seven ;
|
||||
//8号
|
||||
private String eight ;
|
||||
//9号
|
||||
private String nine ;
|
||||
//10号
|
||||
private String ten ;
|
||||
//11号
|
||||
private String eleven ;
|
||||
//12号
|
||||
private String twelve ;
|
||||
//13号
|
||||
private String thirteen ;
|
||||
//14号
|
||||
private String fourteen;
|
||||
//15号
|
||||
private String fifteen;
|
||||
//16号
|
||||
private String sixteen;
|
||||
//17号
|
||||
private String seventeen;
|
||||
//18号
|
||||
private String eighteen;
|
||||
//19号
|
||||
private String nineteen;
|
||||
//20号
|
||||
private String twenty;
|
||||
//21号
|
||||
private String twentyOne;
|
||||
//22号
|
||||
private String twentyTwo;
|
||||
//23号
|
||||
private String twentyThree;
|
||||
//24号
|
||||
private String twentyFour;
|
||||
//25号
|
||||
private String twentyFive;
|
||||
//26号
|
||||
private String twentySix;
|
||||
//27号
|
||||
private String twentySeven;
|
||||
//28号
|
||||
private String twentyEight;
|
||||
//29号
|
||||
private String twentyNine;
|
||||
//30号
|
||||
private String thirty;
|
||||
//31号
|
||||
private String thirtyOne;
|
||||
|
||||
/** 实际结束时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
private Date orderEnd;
|
||||
|
||||
/** 时间 */
|
||||
private String yearMouth;
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setOrderId(String orderId) {
|
||||
this.orderId = orderId;
|
||||
}
|
||||
public String getOrderId() {
|
||||
return orderId;
|
||||
}
|
||||
|
||||
public String getItemTools() {
|
||||
return itemTools;
|
||||
}
|
||||
public void setItemTools(String itemTools) {
|
||||
this.itemTools = itemTools;
|
||||
}
|
||||
|
||||
public String getItemId() {
|
||||
return itemId;
|
||||
}
|
||||
public void setItemId(String itemId) {
|
||||
this.itemId = itemId;
|
||||
}
|
||||
|
||||
public String getItemCode() {
|
||||
return itemCode;
|
||||
}
|
||||
public void setItemCode(String itemCode) {
|
||||
this.itemCode = itemCode;
|
||||
}
|
||||
|
||||
public String getItemName() {
|
||||
return itemName;
|
||||
}
|
||||
public void setItemName(String itemName) {
|
||||
this.itemName = itemName;
|
||||
}
|
||||
|
||||
public String getItemMethod() {
|
||||
return itemMethod;
|
||||
}
|
||||
public void setItemMethod(String itemMethod) {
|
||||
this.itemMethod = itemMethod;
|
||||
}
|
||||
|
||||
public String getItemType() {
|
||||
return itemType;
|
||||
}
|
||||
public void setItemType(String itemType) {
|
||||
this.itemType = itemType;
|
||||
}
|
||||
|
||||
public String getItemTypeName() {
|
||||
return itemTypeName;
|
||||
}
|
||||
public void setItemTypeName(String itemTypeName) {
|
||||
this.itemTypeName = itemTypeName;
|
||||
}
|
||||
|
||||
public String getItemRemark() {
|
||||
return itemRemark;
|
||||
}
|
||||
public void setItemRemark(String itemRemark) {
|
||||
this.itemRemark = itemRemark;
|
||||
}
|
||||
|
||||
public String getStandardType() {
|
||||
return standardType;
|
||||
}
|
||||
public void setStandardType(String standardType) {
|
||||
this.standardType = standardType;
|
||||
}
|
||||
|
||||
public String getStandardName() {
|
||||
return standardName;
|
||||
}
|
||||
public void setStandardName(String standardName) {
|
||||
this.standardName = standardName;
|
||||
}
|
||||
|
||||
public int getItemLoop() {
|
||||
return itemLoop;
|
||||
}
|
||||
public void setItemLoop(int itemLoop) {
|
||||
this.itemLoop = itemLoop;
|
||||
}
|
||||
|
||||
public String getItemLoopType() {
|
||||
return itemLoopType;
|
||||
}
|
||||
public void setItemLoopType(String itemLoopType) {
|
||||
this.itemLoopType = itemLoopType;
|
||||
}
|
||||
|
||||
public void setEquipmentCode(String equipmentCode) {
|
||||
this.equipmentCode = equipmentCode;
|
||||
}
|
||||
public String getEquipmentCode() {
|
||||
return equipmentCode;
|
||||
}
|
||||
|
||||
public void setDetailId(String detailId) {
|
||||
this.detailId = detailId;
|
||||
}
|
||||
public String getDetailId() {
|
||||
return detailId;
|
||||
}
|
||||
|
||||
public String getRepairReach() {
|
||||
return repairReach;
|
||||
}
|
||||
public void setRepairReach(String repairReach) {
|
||||
this.repairReach = repairReach;
|
||||
}
|
||||
|
||||
public String getDetailReach() {
|
||||
return detailReach;
|
||||
}
|
||||
public void setDetailReach(String detailReach) {
|
||||
this.detailReach = detailReach;
|
||||
}
|
||||
|
||||
public void setOrderEnd(Date orderEnd) {
|
||||
this.orderEnd = orderEnd;
|
||||
}
|
||||
public Date getOrderEnd() {
|
||||
return orderEnd;
|
||||
}
|
||||
|
||||
public void setYearMouth(String yearMouth) {
|
||||
this.yearMouth = yearMouth;
|
||||
}
|
||||
public String getYearMouth() {
|
||||
return yearMouth;
|
||||
}
|
||||
|
||||
public void setOne(String one) {
|
||||
this.one = one;
|
||||
}
|
||||
public String getOne() {
|
||||
return one;
|
||||
}
|
||||
|
||||
public void setTwo(String two) {
|
||||
this.two = two;
|
||||
}
|
||||
public String getTwo() {
|
||||
return two;
|
||||
}
|
||||
|
||||
public void setThree(String three) {
|
||||
this.three = three;
|
||||
}
|
||||
public String getThree() {
|
||||
return three;
|
||||
}
|
||||
|
||||
public void setFour(String four) {
|
||||
this.four = four;
|
||||
}
|
||||
public String getFour() {
|
||||
return four;
|
||||
}
|
||||
|
||||
public void setFive(String five) {
|
||||
this.five = five;
|
||||
}
|
||||
public String getFive() {
|
||||
return five;
|
||||
}
|
||||
|
||||
public void setSix(String six) {
|
||||
this.six = six;
|
||||
}
|
||||
public String getSix() {
|
||||
return six;
|
||||
}
|
||||
|
||||
public void setSeven(String seven) {
|
||||
this.seven = seven;
|
||||
}
|
||||
public String getSeven() {
|
||||
return seven;
|
||||
}
|
||||
|
||||
public void setEight(String eight) {
|
||||
this.eight = eight;
|
||||
}
|
||||
public String getEight() {
|
||||
return eight;
|
||||
}
|
||||
|
||||
public void setNine(String nine) {
|
||||
this.nine = nine;
|
||||
}
|
||||
public String getNine() {
|
||||
return nine;
|
||||
}
|
||||
|
||||
public void setTen(String ten) {
|
||||
this.ten = ten;
|
||||
}
|
||||
public String getTen() {
|
||||
return ten;
|
||||
}
|
||||
|
||||
public void setEleven(String eleven) {
|
||||
this.eleven = eleven;
|
||||
}
|
||||
public String getEleven() {
|
||||
return eleven;
|
||||
}
|
||||
|
||||
public void setTwelve(String twelve) {
|
||||
this.twelve = twelve;
|
||||
}
|
||||
public String getTwelve() {
|
||||
return twelve;
|
||||
}
|
||||
|
||||
public void setThirteen(String thirteen) {
|
||||
this.thirteen = thirteen;
|
||||
}
|
||||
public String getThirteen() {
|
||||
return thirteen;
|
||||
}
|
||||
|
||||
public void setFourteen(String fourteen) {
|
||||
this.fourteen = fourteen;
|
||||
}
|
||||
public String getFourteen() {
|
||||
return fourteen;
|
||||
}
|
||||
|
||||
public void setFifteen(String fifteen) {
|
||||
this.fifteen = fifteen;
|
||||
}
|
||||
public String getFifteen() {
|
||||
return fifteen;
|
||||
}
|
||||
|
||||
public void setSixteen(String sixteen) {
|
||||
this.sixteen = sixteen;
|
||||
}
|
||||
public String getSixteen() {
|
||||
return sixteen;
|
||||
}
|
||||
|
||||
public void setSeventeen(String seventeen) {
|
||||
this.seventeen = seventeen;
|
||||
}
|
||||
public String getSeventeen() {
|
||||
return seventeen;
|
||||
}
|
||||
|
||||
public void setEighteen(String eighteen) {
|
||||
this.eighteen = eighteen;
|
||||
}
|
||||
public String getEighteen() {
|
||||
return eighteen;
|
||||
}
|
||||
|
||||
public void setNineteen(String nineteen) {
|
||||
this.nineteen = nineteen;
|
||||
}
|
||||
public String getNineteen() {
|
||||
return nineteen;
|
||||
}
|
||||
|
||||
public void setTwenty(String twenty) {
|
||||
this.twenty = twenty;
|
||||
}
|
||||
public String getTwenty() {
|
||||
return twenty;
|
||||
}
|
||||
|
||||
public void setTwentyOne(String twentyOne) {
|
||||
this.twentyOne = twentyOne;
|
||||
}
|
||||
public String getTwentyOne() {
|
||||
return twentyOne;
|
||||
}
|
||||
|
||||
public void setTwentyTwo(String twentyTwo) {
|
||||
this.twentyTwo = twentyTwo;
|
||||
}
|
||||
public String getTwentyTwo() {
|
||||
return twentyTwo;
|
||||
}
|
||||
|
||||
public void setTwentyThree(String twentyThree) {
|
||||
this.twentyThree = twentyThree;
|
||||
}
|
||||
public String getTwentyThree() {
|
||||
return twentyThree;
|
||||
}
|
||||
|
||||
public void setTwentyFour(String twentyFour) {
|
||||
this.twentyFour = twentyFour;
|
||||
}
|
||||
public String getTwentyFour() {
|
||||
return twentyFour;
|
||||
}
|
||||
|
||||
public void setTwentyFive(String twentyFive) {
|
||||
this.twentyFive = twentyFive;
|
||||
}
|
||||
public String getTwentyFive() {
|
||||
return twentyFive;
|
||||
}
|
||||
|
||||
public void setTwentySix(String twentySix) {
|
||||
this.twentySix = twentySix;
|
||||
}
|
||||
public String getTwentySix() {
|
||||
return twentySix;
|
||||
}
|
||||
|
||||
public void setTwentySeven(String twentySeven) {
|
||||
this.twentySeven = twentySeven;
|
||||
}
|
||||
public String getTwentySeven() {
|
||||
return twentySeven;
|
||||
}
|
||||
|
||||
public void setTwentyEight(String twentyEight) {
|
||||
this.twentyEight = twentyEight;
|
||||
}
|
||||
public String getTwentyEight() {
|
||||
return twentyEight;
|
||||
}
|
||||
|
||||
public void setTwentyNine(String twentyNine) {
|
||||
this.twentyNine = twentyNine;
|
||||
}
|
||||
public String getTwentyNine() {
|
||||
return twentyNine;
|
||||
}
|
||||
|
||||
public void setThirty(String thirty) {
|
||||
this.thirty = thirty;
|
||||
}
|
||||
public String getThirty() {
|
||||
return thirty;
|
||||
}
|
||||
|
||||
public void setThirtyOne(String thirtyOne) {
|
||||
this.thirtyOne = thirtyOne;
|
||||
}
|
||||
public String getThirtyOne() {
|
||||
return thirtyOne;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue