14 changed files with 179 additions and 14 deletions
@ -0,0 +1,33 @@ |
|||
package com.elink.esua.epdc.dto.group.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* |
|||
* 话题审核记录Result DTO |
|||
* |
|||
* @Author:liuchuang |
|||
* @Date:2019/11/8 9:25 |
|||
*/ |
|||
@Data |
|||
public class TopicAuditRecordResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 8330963966208262163L; |
|||
|
|||
/** |
|||
* 状态(0:审核不通过,2:已关闭) |
|||
*/ |
|||
private Integer state; |
|||
|
|||
/** |
|||
* 处理意见 |
|||
*/ |
|||
private String processionOpinions; |
|||
|
|||
/** |
|||
* 审核时间 |
|||
*/ |
|||
private Date createdTime; |
|||
} |
Loading…
Reference in new issue