xuhy
3 天以前 4d1f7143f73456c142fd532248a6327021d04de8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "erp问题上报处理信息DTO")
public class TErpIssueReportingProcessDTO implements Serializable {
 
    @ApiModelProperty(value = "id")
    private String id;
 
    @ApiModelProperty(value = "处理内容")
    private String handlerContent;
 
}