forked from rongchao/epmet-cloud-rizhao
7 changed files with 282 additions and 1 deletions
@ -0,0 +1,53 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
@Data |
|||
public class HistoryScoreListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
public interface List extends CustomerClientShowGroup {} |
|||
|
|||
/** |
|||
* 标题 |
|||
*/ |
|||
private String title; |
|||
|
|||
/** |
|||
* 起始时间 |
|||
*/ |
|||
//@JsonFormat(pattern = "yyyy-MM-dd")
|
|||
@NotBlank(message = "起始时间不能为空", groups = List.class) |
|||
private String startTime; |
|||
|
|||
/** |
|||
* 截止时间 |
|||
*/ |
|||
//@JsonFormat(pattern = "yyyy-MM-dd")
|
|||
@NotBlank(message = "截止时间不能为空", groups = List.class) |
|||
private String endTime; |
|||
|
|||
/** |
|||
* 当前页 |
|||
*/ |
|||
private Integer pageNo = 1; |
|||
|
|||
/** |
|||
* 每页记录数 |
|||
*/ |
|||
private Integer pageSize = 20; |
|||
|
|||
/** |
|||
* 是否分页【true分 false不分】 |
|||
*/ |
|||
private Boolean isPage = true; |
|||
|
|||
private String customerId; |
|||
private String userId; |
|||
|
|||
|
|||
} |
@ -0,0 +1,160 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
@Data |
|||
public class HistoryScoreDetailResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public interface Add extends CustomerClientShowGroup { |
|||
} |
|||
|
|||
public interface Edit extends CustomerClientShowGroup { |
|||
} |
|||
|
|||
/** |
|||
* id |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 标题 |
|||
*/ |
|||
private String title; |
|||
|
|||
/** |
|||
* 起始时间 |
|||
*/ |
|||
private Date startTime; |
|||
|
|||
/** |
|||
* 截止时间 |
|||
*/ |
|||
private Date endTime; |
|||
|
|||
/** |
|||
* 时间区间 |
|||
*/ |
|||
private String time; |
|||
|
|||
/** |
|||
* 发布时间 |
|||
*/ |
|||
private Date releaseTime; |
|||
|
|||
/** |
|||
* 截止时间 |
|||
*/ |
|||
private List<Detail> detailList; |
|||
|
|||
@Data |
|||
public static class Detail implements Serializable { |
|||
/** |
|||
* id |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* screen_py_history_score.id |
|||
*/ |
|||
private String historyScoreId; |
|||
|
|||
/** |
|||
* 街道组织Id |
|||
*/ |
|||
private String agencyId = ""; |
|||
|
|||
/** |
|||
* 街道名称 |
|||
*/ |
|||
private String agencyName = ""; |
|||
|
|||
/** |
|||
* 网格活跃度 |
|||
*/ |
|||
private BigDecimal wghyd = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 事件赋分 |
|||
*/ |
|||
private BigDecimal sjff = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 接入率 |
|||
*/ |
|||
private BigDecimal jrl = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 在线率 |
|||
*/ |
|||
private BigDecimal zxl = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 出图率 |
|||
*/ |
|||
private BigDecimal ctl = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 雪亮工程 |
|||
*/ |
|||
private BigDecimal xlgc = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 完成进度 |
|||
*/ |
|||
private BigDecimal wcjd = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 未补检 |
|||
*/ |
|||
private BigDecimal wbj = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 反馈抽检 |
|||
*/ |
|||
private BigDecimal fkcj = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 日核周调 |
|||
*/ |
|||
private BigDecimal rhzt = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 亮点工作 |
|||
*/ |
|||
private BigDecimal ldgz = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 亮点工作备注 |
|||
*/ |
|||
private String ldgzbz; |
|||
|
|||
/** |
|||
* 其他工作 |
|||
*/ |
|||
private BigDecimal qtgz = new BigDecimal(0); |
|||
|
|||
/** |
|||
* 其他工作备注 |
|||
*/ |
|||
private String qtgzbz; |
|||
|
|||
/** |
|||
* 能力得分 |
|||
*/ |
|||
private BigDecimal nldf = new BigDecimal(0); |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue