forked from rongchao/epmet-cloud-rizhao
Browse Source
# Conflicts: # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/controller/FactOriginController.java # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/dao/topic/TopicDao.java # epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/topic/TopicService.java # epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/topic/TopicDao.xmldev
26 changed files with 538 additions and 85 deletions
@ -0,0 +1,21 @@ |
|||
package com.epmet.commons.tools.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/15 5:41 下午 |
|||
*/ |
|||
@Data |
|||
public class TimeListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1482639109300981626L; |
|||
|
|||
private String dateId; |
|||
private String weekId; |
|||
private String monthId; |
|||
private String quarterId; |
|||
private String yearId; |
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.extract.form; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/15 2:23 下午 |
|||
*/ |
|||
@Data |
|||
@AllArgsConstructor |
|||
public class IssueInfoFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8805754438522195653L; |
|||
|
|||
public interface IssueInfo extends CustomerClientShowGroup{} |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
@NotBlank(message = "customerId",groups = IssueInfo.class) |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 日期ID(实际为议题创建的 "yyyymmdd" ) |
|||
*/ |
|||
@NotBlank(message = "dateId",groups = IssueInfo.class) |
|||
private String dateId; |
|||
} |
@ -0,0 +1,50 @@ |
|||
package com.epmet.dto.extract.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/15 2:04 下午 |
|||
*/ |
|||
@Data |
|||
public class IssueInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3097591617162404015L; |
|||
|
|||
/** |
|||
* 议题ID |
|||
*/ |
|||
private String issueId; |
|||
|
|||
/** |
|||
* 议题状态 |
|||
*/ |
|||
private String issueStatus; |
|||
|
|||
/** |
|||
* 话题ID |
|||
*/ |
|||
private String topicId; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 机关ID |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
} |
@ -0,0 +1,21 @@ |
|||
package com.epmet.dto.extract.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/15 4:52 下午 |
|||
*/ |
|||
@Data |
|||
public class TopicInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5902552728088278104L; |
|||
|
|||
private String topicId; |
|||
|
|||
private String userId; |
|||
|
|||
private Integer isParty; |
|||
} |
@ -0,0 +1,19 @@ |
|||
package com.epmet.dto.extract.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/9/15 4:20 下午 |
|||
*/ |
|||
@Data |
|||
public class UserPartyResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 6688297568032159824L; |
|||
|
|||
private String userId; |
|||
|
|||
private String roleName; |
|||
} |
Loading…
Reference in new issue