jiangping
2025-06-17 78a173f85f8a4666d83cf8d900f04dd9f8e3e127
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;
 
}