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;
|
}
|
}
|