feat: 审核任务列表(包含历史审批) id为long导致丢失精度问题修改

pull/1/head
shuliYao 1 year ago
parent be1e3e1525
commit 77e3f69c10

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -1251,7 +1251,7 @@ public class FlowTaskServiceImpl extends FlowServiceFactory implements IFlowTask
for(OcrTaskchildPictureAppro taskchildPicture:list){
//查询对应的流程分类
Category category = categoryService.selectDtoById(taskchildPicture.getCategoryid());
Category category = categoryService.selectDtoById(Long.parseLong(taskchildPicture.getCategoryid()));
taskchildPicture.setCategoryDto(category);
if(StringUtils.isNotBlank(taskchildPicture.getProcessdefinitionid())){

@ -62,7 +62,7 @@ public class CategoryController extends BaseController{
QueryWrapper<Category> queryWrapper = SearchQueryFormat.queryStringFormat(searchQuery,category);
IPage<Category> page = this.categoryService.selectSearchListPage(paramterPage,queryWrapper);
for(Category category1:page.getRecords()){
category1.setTenant(tenantService.selectDtoById(category1.getTenantid()));
category1.setTenant(tenantService.selectDtoById(Long.parseLong(category1.getTenantid())));
}
return ResultVoUtil.success(page);
}

@ -100,7 +100,7 @@ public class Category implements BaseDto,java.io.Serializable {
@Schema(description = "租户主键")
@TableField(value="TENANTID")
private Long tenantid;
private String tenantid;
//租户对象
@TableField(exist = false)

@ -36,7 +36,8 @@ public class OcrTaskchildPictureAppro implements java.io.Serializable {
private static final long serialVersionUID = -8018660053527763810L;
@ApiModelProperty(value = "主键")
private Long id;
private String id;
@ApiModelProperty(value = "比对图片主键,多个数据使用英文逗号分隔")
private String ocpictureid;
@ -50,19 +51,19 @@ public class OcrTaskchildPictureAppro implements java.io.Serializable {
private String deptid;
@ApiModelProperty(value = "租户ID")
private Long tenantid;
private String tenantid;
@ApiModelProperty(value = "任务包主键")
private Long packageid;
private String packageid;
@ApiModelProperty(value = "原图片主键")
private Long pictureid;
private String pictureid;
@ApiModelProperty(value = "类型名称")
private String category;
@ApiModelProperty(value = "项目ID")
private Long categoryid;
private String categoryid;
@ApiModelProperty(value = "明细单")
private String specification;

Loading…
Cancel
Save