Browse Source
# Conflicts: # epmet-module/gov-issue/gov-issue-server/src/main/java/com/epmet/controller/IssueController.java # epmet-module/gov-issue/gov-issue-server/src/main/java/com/epmet/service/IssueService.java # epmet-module/gov-issue/gov-issue-server/src/main/java/com/epmet/service/impl/IssueServiceImpl.javamaster
12 changed files with 289 additions and 4 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/9 16:52 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class AllIssueListFormDTO extends PageFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -9150357859854770833L; |
|||
|
|||
private String startTime; |
|||
private String endTime; |
|||
private String issueStatus; |
|||
private String issueTitle; |
|||
private String orgId; |
|||
private String orgType; |
|||
private String customerId; |
|||
private String userId; |
|||
} |
@ -0,0 +1,31 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/9 17:07 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class AuditListFormDTO extends PageFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 5924913199706972596L; |
|||
|
|||
private String startTime; |
|||
private String endTime; |
|||
private String issueTitle; |
|||
private String orgId; |
|||
private String orgType; |
|||
|
|||
/** |
|||
* under_auditing:待审核;rejected:驳回; |
|||
*/ |
|||
private String applyStatus; |
|||
|
|||
private String customerId; |
|||
private String userId; |
|||
} |
@ -0,0 +1,55 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/9 16:49 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class AllIssueListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -3447913619727610107L; |
|||
|
|||
/** |
|||
* 所属网格 |
|||
*/ |
|||
private String gridName; |
|||
private String gridId; |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 议题标题 |
|||
*/ |
|||
private String issueTitle; |
|||
|
|||
/** |
|||
* 议题建议 |
|||
*/ |
|||
private String suggestion; |
|||
|
|||
/** |
|||
* 议题创建时间 |
|||
*/ |
|||
private String createdTime; |
|||
|
|||
/** |
|||
* 支持数 |
|||
*/ |
|||
private Integer supportCount; |
|||
|
|||
/** |
|||
* 反对数 |
|||
*/ |
|||
private Integer oppositionCount; |
|||
|
|||
/** |
|||
* 议题状态 |
|||
*/ |
|||
private String issueStatus; |
|||
private String issueStatusName; |
|||
private String issueId; |
|||
} |
@ -0,0 +1,39 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/10/9 17:04 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class AuditListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -9143726703244316997L; |
|||
|
|||
|
|||
/** |
|||
* 所属网格 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 议题标题 |
|||
*/ |
|||
private String issueTitle; |
|||
|
|||
/** |
|||
* 议题建议 |
|||
*/ |
|||
private String suggestion; |
|||
|
|||
private String applyStatus; |
|||
private String applyStatusName; |
|||
|
|||
private String applyTime; |
|||
|
|||
private String issueApplicationId; |
|||
} |
Loading…
Reference in new issue