Compare commits

...

3 Commits

6 changed files with 13 additions and 8 deletions

View File

@ -16,6 +16,7 @@ import org.springframework.transaction.annotation.Transactional;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.concurrent.CompletableFuture;
/** /**
* 操作日志 * 操作日志
@ -28,8 +29,8 @@ public class SysLogOperationServiceImpl extends BaseServiceImpl<SysLogOperationD
@Override @Override
public PageData<SysLogOperationDTO> page(Map<String, Object> params) { public PageData<SysLogOperationDTO> page(Map<String, Object> params) {
IPage<SysLogOperationEntity> page = baseDao.selectPage( IPage<SysLogOperationEntity> page = baseDao.selectPage(
getPage(params, Constant.CREATE_DATE, false), getPage(params, Constant.CREATE_DATE, false),
getWrapper(params) getWrapper(params)
); );
return getPageData(page, SysLogOperationDTO.class); return getPageData(page, SysLogOperationDTO.class);
@ -42,7 +43,7 @@ public class SysLogOperationServiceImpl extends BaseServiceImpl<SysLogOperationD
return ConvertUtils.sourceToTarget(entityList, SysLogOperationDTO.class); return ConvertUtils.sourceToTarget(entityList, SysLogOperationDTO.class);
} }
private QueryWrapper<SysLogOperationEntity> getWrapper(Map<String, Object> params){ private QueryWrapper<SysLogOperationEntity> getWrapper(Map<String, Object> params) {
String status = (String) params.get("status"); String status = (String) params.get("status");
QueryWrapper<SysLogOperationEntity> wrapper = new QueryWrapper<>(); QueryWrapper<SysLogOperationEntity> wrapper = new QueryWrapper<>();
@ -54,7 +55,9 @@ public class SysLogOperationServiceImpl extends BaseServiceImpl<SysLogOperationD
@Override @Override
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
public void save(SysLogOperationEntity entity) { public void save(SysLogOperationEntity entity) {
insert(entity); CompletableFuture.runAsync(() -> {
insert(entity);
});
} }
} }

View File

@ -210,7 +210,7 @@ public class ResourceController {
@ApiOperation("导入") @ApiOperation("导入")
@LogOperation("导入") @LogOperation("导入")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(name = "source", value = "请求来源", paramType = "string", dataType = "string") @ApiImplicitParam(name = "file", value = "数据文件文件", paramType = "file", dataType = "file")
}) })
public Result importResource(@RequestParam("file") MultipartFile uploadFile, HttpServletRequest request) { public Result importResource(@RequestParam("file") MultipartFile uploadFile, HttpServletRequest request) {
List<Map<String, Object>> dept = List<Map<String, Object>> dept =

View File

@ -36,7 +36,7 @@ public class WorkDynamicsDTO implements Serializable {
private Long updater; private Long updater;
@ApiModelProperty(value = "修改时间") @ApiModelProperty(value = "修改时间")
private Date updateDate; private Date updateDate;
@ApiModelProperty(value = "备用字段1") @ApiModelProperty(value = "摘要")
private String note1; private String note1;
@ApiModelProperty(value = "备用字段2") @ApiModelProperty(value = "备用字段2")
private String note2; private String note2;

View File

@ -59,7 +59,7 @@ public class WorkDynamicsEntity {
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateDate; private Date updateDate;
/** /**
* 备用字段1 * 摘要
*/ */
private String note1; private String note1;
/** /**

View File

@ -36,7 +36,7 @@ public class WorkDynamicsExcel {
private Long updater; private Long updater;
@ExcelProperty(value = "修改时间", index = 8) @ExcelProperty(value = "修改时间", index = 8)
private Date updateDate; private Date updateDate;
@ExcelProperty(value = "备用字段1", index = 9) @ExcelProperty(value = "摘要", index = 9)
private String note1; private String note1;
@ExcelProperty(value = "备用字段2", index = 10) @ExcelProperty(value = "备用字段2", index = 10)
private String note2; private String note2;

View File

@ -0,0 +1,2 @@
ALTER TABLE `share_platform`.`tb_work_dynamics`
MODIFY COLUMN `note1` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '摘要' AFTER `update_date`;