mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.panzhihua.common.model.dtos.community.discuss;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author lyq
 * 议事投票公布结果请求参数
 */
@Data
@ApiModel("议事投票公布结果请求参数")
public class ComActDiscussPublishResultDTO {
 
    @ApiModelProperty("议事投票id")
    private Long id;
 
    @ApiModelProperty("公布结果")
    private String result;
 
    @ApiModelProperty(value = "用户id",hidden = true)
    private Long userId;
 
    @ApiModelProperty("类型(1.新增公布结果  2.修改公布结果)")
    private Integer type;
 
    /**
     * 类型(1.新增公布结果  2.修改公布结果)
     */
    public interface type{
        int add = 1;
        int edit = 2;
    }
}