1
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user