1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.doumee.dao.business.dto;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| public class DiscussAuditDTO {
|
| @ApiModelProperty(value = "业务主键")
| private Integer id;
|
| @ApiModelProperty(value = "0=审批通过;1=审批拒绝")
| private Integer status;
|
| @ApiModelProperty(value = "说明")
| private String describe;
|
| }
|
|