forked from rongchao/epmet-cloud-rizhao
51 changed files with 1053 additions and 34 deletions
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 处理进展——已转项目 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProcessProjectIdFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 2185544562374036005L; |
||||
|
|
||||
|
/** |
||||
|
* 项目Id |
||||
|
*/ |
||||
|
private String projectId; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 校验是否投票——表决中 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class checkVoteFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2170063271034172650L; |
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 议题id |
||||
|
*/ |
||||
|
private String issueId; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 校验是否投票——表决中 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CheckVoteResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1908314603146050709L; |
||||
|
/** |
||||
|
* 是否投票 已投票:true,未投票:false |
||||
|
*/ |
||||
|
private Boolean voteStatus; |
||||
|
|
||||
|
/** |
||||
|
* 支持:support,反对:opposition |
||||
|
*/ |
||||
|
private String voteType; |
||||
|
} |
||||
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 表决中议题详情——支持、反对数 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridIdResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1968505337707779785L; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,40 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 议题处理进展 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IssueProcessResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8437703271418235334L; |
||||
|
/** |
||||
|
* 处理进展名称(表决中、转项目、流转中已结案、已关闭) |
||||
|
*/ |
||||
|
private String processName; |
||||
|
|
||||
|
/** |
||||
|
* 已转项目进展记录时间 |
||||
|
*/ |
||||
|
private Long processTime; |
||||
|
|
||||
|
/** |
||||
|
* 进展说明 |
||||
|
*/ |
||||
|
private String progressDesc; |
||||
|
|
||||
|
/** |
||||
|
* 进展id(操作记录表id) |
||||
|
*/ |
||||
|
private String processId; |
||||
|
|
||||
|
/** |
||||
|
* 网格Id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,41 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 议题处理进展 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProcessListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -702803628652751983L; |
||||
|
|
||||
|
/** |
||||
|
* 处理进展名称(表决中、转项目、流转中已结案、已关闭) |
||||
|
*/ |
||||
|
private String processName; |
||||
|
|
||||
|
/** |
||||
|
* 已转项目进展记录时间 |
||||
|
*/ |
||||
|
private Long processTime; |
||||
|
|
||||
|
/** |
||||
|
* 处理部门(处理人所属的机关单位名称) |
||||
|
*/ |
||||
|
private String departmentName; |
||||
|
|
||||
|
/** |
||||
|
* 进展说明 |
||||
|
*/ |
||||
|
private String progressDesc; |
||||
|
|
||||
|
/** |
||||
|
* 进展id(操作记录表id) |
||||
|
*/ |
||||
|
private String processId; |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 处理进展——已转项目 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProcessProjectIdFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 2185544562374036005L; |
||||
|
|
||||
|
/** |
||||
|
* 项目Id |
||||
|
*/ |
||||
|
private String projectId; |
||||
|
} |
||||
@ -0,0 +1,57 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 项目跟踪-项目处理进展列表-接口返参 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectProcessListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5342591979112900804L; |
||||
|
|
||||
|
/** |
||||
|
* 项目处理进展Id |
||||
|
*/ |
||||
|
private String processId = ""; |
||||
|
|
||||
|
/** |
||||
|
* 处理进展名称 |
||||
|
*/ |
||||
|
private String processName = ""; |
||||
|
|
||||
|
/** |
||||
|
* 处理进展时间 |
||||
|
*/ |
||||
|
private Long processTime; |
||||
|
|
||||
|
/** |
||||
|
* 处理部门 |
||||
|
*/ |
||||
|
private String departmentName = ""; |
||||
|
|
||||
|
/** |
||||
|
* 进展说明 |
||||
|
*/ |
||||
|
private String progressDesc = ""; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.resi.group.dto.group.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 查询某用户是否加入过小组 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridIdFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -8535773441961516653L; |
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 网格Id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
} |
||||
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.resi.group.dto.group.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 校验用户是否加入小组 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CheckJoinTeamResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -1590972041272087570L; |
||||
|
|
||||
|
/** |
||||
|
* 是否加入小组 eg:已加入:true,未加入:false |
||||
|
*/ |
||||
|
private Boolean voteAuthorization; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 查询某用户是否加入过小组 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CheckVoteFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3459720938248756634L; |
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 议题id |
||||
|
*/ |
||||
|
private String issueId; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 查询某用户是否加入过小组 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridIdFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -8535773441961516653L; |
||||
|
/** |
||||
|
* 用户id |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 网格Id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
} |
||||
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 校验用户是否加入小组 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CheckJoinTeamResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -1590972041272087570L; |
||||
|
|
||||
|
/** |
||||
|
* 是否加入小组 eg:已加入:true,未加入:false |
||||
|
*/ |
||||
|
private Boolean voteAuthorization; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 校验是否投票——表决中 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CheckVoteResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1908314603146050709L; |
||||
|
/** |
||||
|
* 是否投票 已投票:true,未投票:false |
||||
|
*/ |
||||
|
private Boolean voteStatus; |
||||
|
|
||||
|
/** |
||||
|
* 支持:support,反对:opposition |
||||
|
*/ |
||||
|
private String voteType; |
||||
|
} |
||||
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 表决中议题详情——支持、反对数 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridIdResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1968505337707779785L; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,41 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 议题处理进展 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProcessListResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -702803628652751983L; |
||||
|
|
||||
|
/** |
||||
|
* 处理进展名称(表决中、转项目、流转中已结案、已关闭) |
||||
|
*/ |
||||
|
private String processName; |
||||
|
|
||||
|
/** |
||||
|
* 已转项目进展记录时间 |
||||
|
*/ |
||||
|
private Long processTime; |
||||
|
|
||||
|
/** |
||||
|
* 处理部门(处理人所属的机关单位名称) |
||||
|
*/ |
||||
|
private String departmentName; |
||||
|
|
||||
|
/** |
||||
|
* 进展说明 |
||||
|
*/ |
||||
|
private String progressDesc; |
||||
|
|
||||
|
/** |
||||
|
* 进展id(操作记录表id) |
||||
|
*/ |
||||
|
private String processId; |
||||
|
|
||||
|
} |
||||
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* 表决中投票初始化 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VoteInitResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -1564601349406249302L; |
||||
|
|
||||
|
/** |
||||
|
* 是否加入小组 已加入:true,未加入:false |
||||
|
*/ |
||||
|
private Boolean voteAuthorization; |
||||
|
|
||||
|
/** |
||||
|
* 是否投票 已投票:true,未投票:false |
||||
|
*/ |
||||
|
private Boolean voteStatus; |
||||
|
|
||||
|
/** |
||||
|
* 支持:support,反对:opposition |
||||
|
*/ |
||||
|
private String voteType; |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue