fix 导出任务名称
This commit is contained in:
@@ -13,7 +13,7 @@ public enum FileTypeEnum {
|
||||
MY_POINT("my_point","我的铺位管理表"),
|
||||
MY_FRANCHISEES("my_franchisees","我的加盟商"),
|
||||
TEAM_FRANCHISEES("team_franchisees","团队加盟商"),
|
||||
PREPARATION("preparation","进度管理表"),
|
||||
PREPARATION("preparation","进度管理"),
|
||||
;
|
||||
private String fileType;
|
||||
private String desc;
|
||||
|
||||
@@ -94,7 +94,7 @@ public class ExportServiceImpl implements ExportService {
|
||||
}
|
||||
ImportTaskDO importTaskDO = new ImportTaskDO();
|
||||
importTaskDO.setStatus(ImportStatusEnum.Ongoing.getCode());
|
||||
importTaskDO.setFileName(FileTypeEnum.PREPARATION.getDesc());
|
||||
importTaskDO.setFileName(FileTypeEnum.PREPARATION.getDesc()+DateUtils.strToDate(new Date().toString(), DateUtils.SPECIAL_DATE_START_1));
|
||||
importTaskDO.setIsImport(Boolean.FALSE);
|
||||
importTaskDO.setFileType(FileTypeEnum.PREPARATION.getFileType());
|
||||
importTaskDO.setCreateUserId(request.getCurUserId());
|
||||
|
||||
Reference in New Issue
Block a user