mitao
2 天以前 7c0a8a91ae6d1c684e7a358929f4bd04f3f4bfe8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.utils;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author xiaochen
 * @date 2025/5/30
 */
@Data
@ApiModel(value = "点位导入失败原因")
public class CustomerImportFailedData {
 
    @ApiModelProperty(value = "行号")
    private Integer rowNum;
 
    @ApiModelProperty(value = "失败原因")
    private String failedReason;
}