Browse Source
# Conflicts: # epmet-module/data-aggregator/data-aggregator-server/src/main/java/com/epmet/dataaggre/service/epmettduck/impl/PrUserProjectServiceImpl.javadev_shibei_match
19 changed files with 431 additions and 9 deletions
@ -0,0 +1,37 @@ |
|||
package com.epmet.dataaggre.dto.epmettduck.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/9/17 10:47 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class TDuckListFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3624352114576287768L; |
|||
|
|||
public interface TDuckListForm{} |
|||
|
|||
/** |
|||
* 1:未发布,2:收集中,3:已结束 |
|||
*/ |
|||
@NotNull(message = "问卷调查状态不能为空",groups = TDuckListForm.class) |
|||
private Integer status; |
|||
|
|||
@NotNull(message = "pageNo不能为空",groups = TDuckListForm.class) |
|||
private Integer pageNo; |
|||
|
|||
@NotNull(message = "pageSize不能为空",groups = TDuckListForm.class) |
|||
private Integer pageSize; |
|||
|
|||
@NotBlank(message = "orgIds不能为空",groups = TDuckListForm.class) |
|||
private String orgIds; |
|||
|
|||
private String userId; |
|||
} |
@ -0,0 +1,96 @@ |
|||
package com.epmet.dataaggre.dto.epmettduck.result; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/9/17 10:47 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class TDuckListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3624352114576287768L; |
|||
|
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 项目code |
|||
*/ |
|||
private String key; |
|||
|
|||
/** |
|||
* 来源Id |
|||
*/ |
|||
private String sourceId; |
|||
|
|||
/** |
|||
* 来源类型 |
|||
*/ |
|||
private Integer sourceType; |
|||
|
|||
/** |
|||
* 项目名称 |
|||
*/ |
|||
private String name; |
|||
|
|||
/** |
|||
* 项目描述 |
|||
*/ |
|||
private String describe; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 项目类型 |
|||
*/ |
|||
private Integer type; |
|||
|
|||
/** |
|||
* 状态 |
|||
*/ |
|||
private Integer status; |
|||
|
|||
/** |
|||
* 适用于哪个端 resi:居民端用户;gov:工作端用户;运营端用户:oper |
|||
*/ |
|||
private String client; |
|||
|
|||
private String createdTime; |
|||
|
|||
/** |
|||
* 是否填写问卷,true:是,false:否 |
|||
*/ |
|||
private Boolean fillStatus; |
|||
|
|||
/** |
|||
* 回收状态 0:未回收;1已回收 |
|||
*/ |
|||
private Integer recycled; |
|||
|
|||
public TDuckListResultDTO() { |
|||
this.customerId = ""; |
|||
this.key = ""; |
|||
this.sourceId = ""; |
|||
this.sourceType = NumConstant.ONE; |
|||
this.name = ""; |
|||
this.describe = ""; |
|||
this.userId = ""; |
|||
this.type = NumConstant.ONE; |
|||
this.status = NumConstant.ONE; |
|||
this.client = ""; |
|||
this.createdTime = ""; |
|||
this.fillStatus = false; |
|||
} |
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.epmet.dataaggre.dto.govorg.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2021/9/16 16:50 |
|||
*/ |
|||
@Data |
|||
public class OrgTreeResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -4304356050545598564L; |
|||
private String orgId; |
|||
private String orgName; |
|||
private String orgType; |
|||
private String orgPids; |
|||
private List<OrgTreeResultDTO> subOrgList; |
|||
} |
Loading…
Reference in new issue