29 lines
805 B
Java
29 lines
805 B
Java
package com.ruoyi.jarvis.domain;
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 后返/跟团返现 Excel 上传记录
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = true)
|
|
public class GroupRebateExcelUpload extends BaseEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Long id;
|
|
private String documentTitle;
|
|
private String originalFilename;
|
|
/** 若依资源路径,如 /profile/upload/group-rebate-excel/... */
|
|
private String filePath;
|
|
private Long fileSize;
|
|
/** 1 解析失败或未处理 2 已成功解析并写订单 */
|
|
private Integer importStatus;
|
|
private Integer dataRows;
|
|
private Integer updatedOrders;
|
|
private Integer notFoundCount;
|
|
private String resultDetailJson;
|
|
}
|