This commit is contained in:
van
2026-03-24 15:36:52 +08:00
parent 175cd3ba01
commit 318cef274e
8 changed files with 387 additions and 25 deletions

View File

@@ -0,0 +1,28 @@
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;
}