update
This commit is contained in:
+6
-5
@@ -1,8 +1,6 @@
|
||||
package com.jero.modules.todoCenter.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.math.BigDecimal;
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
@@ -11,13 +9,10 @@ import lombok.Data;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
|
||||
|
||||
/**
|
||||
* @Description: 流程信息表
|
||||
@@ -125,4 +120,10 @@ public class ProcessInfoEO implements Serializable {
|
||||
/**标准标题*/
|
||||
@TableField(exist = false)
|
||||
private String title;
|
||||
/**项目名称*/
|
||||
@TableField(exist = false)
|
||||
private String projectName;
|
||||
/**年份*/
|
||||
@TableField(exist = false)
|
||||
private String yearName;
|
||||
}
|
||||
|
||||
+1
@@ -301,6 +301,7 @@ public class ProcessInfoEOServiceImpl extends ServiceImpl<ProcessInfoEOMapper, P
|
||||
data.setAssigneeName(currentUserName);
|
||||
}
|
||||
}
|
||||
data.setProjectName(data.getProjectName() + "-" + data.getYearName());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user