监测点报告抽取公共方法
This commit is contained in:
@@ -56,4 +56,6 @@ public class ReportTemplateDTO {
|
||||
*/
|
||||
private String value;
|
||||
|
||||
private String lowValue;
|
||||
|
||||
}
|
||||
|
||||
@@ -1,42 +1,42 @@
|
||||
package com.njcn.csharmonic.pojo.param;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 模板动态更新数据
|
||||
*
|
||||
* @author qijian
|
||||
* @date 2022/10/11
|
||||
*/
|
||||
@Data
|
||||
public class ReportSearchParam {
|
||||
|
||||
@ApiModelProperty(name = "lineId",value = "监测点id")
|
||||
private String lineId;
|
||||
|
||||
@ApiModelProperty(name = "tempId",value = "模板ID")
|
||||
private String tempId;
|
||||
|
||||
@ApiModelProperty(name = "activation",value = "激活状态")
|
||||
private Integer activation;
|
||||
|
||||
@ApiModelProperty(name = "type",value = "报表类型")
|
||||
private Integer type;
|
||||
|
||||
@ApiModelProperty(name = "startTime",value = "开始时间")
|
||||
private String startTime;
|
||||
|
||||
@ApiModelProperty(name = "endTime",value = "结束时间")
|
||||
private String endTime;
|
||||
|
||||
@ApiModelProperty(name = "deptId",value = "部门ID")
|
||||
private String deptId;
|
||||
|
||||
//目前用于区分不同系统资源,null默认 1.无线系统,配合cs-device
|
||||
private Integer resourceType;
|
||||
|
||||
//浙江无线报表特殊标识 null为通用报表 1.浙江无线报表
|
||||
private Integer customType;
|
||||
|
||||
}
|
||||
//package com.njcn.csharmonic.pojo.param;
|
||||
//
|
||||
//import io.swagger.annotations.ApiModelProperty;
|
||||
//import lombok.Data;
|
||||
//
|
||||
///**
|
||||
// * 模板动态更新数据
|
||||
// *
|
||||
// * @author qijian
|
||||
// * @date 2022/10/11
|
||||
// */
|
||||
//@Data
|
||||
//public class ReportSearchParam {
|
||||
//
|
||||
// @ApiModelProperty(name = "lineId",value = "监测点id")
|
||||
// private String lineId;
|
||||
//
|
||||
// @ApiModelProperty(name = "tempId",value = "模板ID")
|
||||
// private String tempId;
|
||||
//
|
||||
// @ApiModelProperty(name = "activation",value = "激活状态")
|
||||
// private Integer activation;
|
||||
//
|
||||
// @ApiModelProperty(name = "type",value = "报表类型")
|
||||
// private Integer type;
|
||||
//
|
||||
// @ApiModelProperty(name = "startTime",value = "开始时间")
|
||||
// private String startTime;
|
||||
//
|
||||
// @ApiModelProperty(name = "endTime",value = "结束时间")
|
||||
// private String endTime;
|
||||
//
|
||||
// @ApiModelProperty(name = "deptId",value = "部门ID")
|
||||
// private String deptId;
|
||||
//
|
||||
// //目前用于区分不同系统资源,null默认 1.无线系统,配合cs-device
|
||||
// private Integer resourceType;
|
||||
//
|
||||
// //浙江无线报表特殊标识 null为通用报表 1.浙江无线报表
|
||||
// private Integer customType;
|
||||
//
|
||||
//}
|
||||
|
||||
@@ -1,37 +1,37 @@
|
||||
package com.njcn.csharmonic.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
|
||||
/**
|
||||
* pqs
|
||||
* 自定义报表
|
||||
* @author cdf
|
||||
* @date 2022/8/16
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@TableName(value = "sys_excel_rpt_temp")
|
||||
public class ExcelRptTemp extends BaseEntity {
|
||||
private String id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String content;
|
||||
|
||||
private Integer activation;
|
||||
|
||||
private Integer state;
|
||||
|
||||
private String valueTitle;
|
||||
|
||||
private String reportType;
|
||||
|
||||
private String reportForm;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
}
|
||||
//package com.njcn.csharmonic.pojo.po;
|
||||
//
|
||||
//import com.baomidou.mybatisplus.annotation.TableName;
|
||||
//import com.njcn.db.bo.BaseEntity;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//
|
||||
//
|
||||
///**
|
||||
// * pqs
|
||||
// * 自定义报表
|
||||
// * @author cdf
|
||||
// * @date 2022/8/16
|
||||
// */
|
||||
//@Data
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//@TableName(value = "sys_excel_rpt_temp")
|
||||
//public class ExcelRptTemp extends BaseEntity {
|
||||
// private String id;
|
||||
//
|
||||
// private String name;
|
||||
//
|
||||
// private String content;
|
||||
//
|
||||
// private Integer activation;
|
||||
//
|
||||
// private Integer state;
|
||||
//
|
||||
// private String valueTitle;
|
||||
//
|
||||
// private String reportType;
|
||||
//
|
||||
// private String reportForm;
|
||||
//
|
||||
// private Integer sort;
|
||||
//
|
||||
//}
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
package com.njcn.csharmonic.pojo.vo;
|
||||
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* pqs
|
||||
* 自定义报表
|
||||
* @author cdf
|
||||
* @date 2022/8/16
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class ReportTemplateVO extends BaseEntity {
|
||||
private String id;
|
||||
|
||||
private String name;
|
||||
|
||||
private String content;
|
||||
|
||||
private String deptId;
|
||||
|
||||
private Integer activation;
|
||||
|
||||
private Integer state;
|
||||
|
||||
private String deptName;
|
||||
|
||||
private String reportType;
|
||||
|
||||
private String reportForm;
|
||||
|
||||
}
|
||||
//package com.njcn.csharmonic.pojo.vo;
|
||||
//
|
||||
//import com.njcn.db.bo.BaseEntity;
|
||||
//import lombok.Data;
|
||||
//import lombok.EqualsAndHashCode;
|
||||
//
|
||||
///**
|
||||
// * pqs
|
||||
// * 自定义报表
|
||||
// * @author cdf
|
||||
// * @date 2022/8/16
|
||||
// */
|
||||
//@Data
|
||||
//@EqualsAndHashCode(callSuper = true)
|
||||
//public class ReportTemplateVO extends BaseEntity {
|
||||
// private String id;
|
||||
//
|
||||
// private String name;
|
||||
//
|
||||
// private String content;
|
||||
//
|
||||
// private String deptId;
|
||||
//
|
||||
// private Integer activation;
|
||||
//
|
||||
// private Integer state;
|
||||
//
|
||||
// private String deptName;
|
||||
//
|
||||
// private String reportType;
|
||||
//
|
||||
// private String reportForm;
|
||||
//
|
||||
//}
|
||||
|
||||
Reference in New Issue
Block a user