k94314517
2025-05-20 142bcc9b22f48a8a2098a66b2964fe10c97c6fe8
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;
 
}