init
parent
0949215e3a
commit
e2eab1eb5a
|
|
@ -634,6 +634,8 @@ create table `eval_internal_review` (
|
|||
`draft_id` bigint default null comment '关联报告稿id',
|
||||
`reviewer_personnel_id` bigint default null comment '内审人人员id',
|
||||
`reviewer_name` varchar(50) default null comment '内审人姓名',
|
||||
`reviewer_signature_url` varchar(512) default null comment '内审人独立签字',
|
||||
`reviewer_signature_task_status` varchar(64) character set utf8mb4 collate utf8mb4_0900_ai_ci not null default 'non_dispatched' comment '审核签字任务状态 dispatched 下发,non_dispatched 未下发',
|
||||
`result_code` int default null comment '审核结果(1通过2退回修改)',
|
||||
`result_name` varchar(50) default null comment '审核结果名称',
|
||||
`opinion_content` varchar(2000) default null comment '审核意见',
|
||||
|
|
@ -664,6 +666,8 @@ create table `eval_tech_review` (
|
|||
`draft_id` bigint default null comment '关联报告稿id',
|
||||
`reviewer_personnel_id` bigint default null comment '技审人人员id',
|
||||
`reviewer_name` varchar(50) default null comment '技审人姓名',
|
||||
`reviewer_signature_url` varchar(512) default null comment '技审人独立签字',
|
||||
`reviewer_signature_task_status` varchar(64) character set utf8mb4 collate utf8mb4_0900_ai_ci not null default 'non_dispatched' comment '审核签字任务状态 dispatched 下发,non_dispatched 未下发',
|
||||
`result_code` int default null comment '审核结果(1通过2退回修改)',
|
||||
`result_name` varchar(50) default null comment '审核结果名称',
|
||||
`opinion_content` varchar(2000) default null comment '审核意见',
|
||||
|
|
|
|||
|
|
@ -150,6 +150,10 @@ public class EvalInternalReviewCO {
|
|||
private String draftId;
|
||||
private String reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
@ApiModelProperty(value = "内审人独立签字")
|
||||
private String reviewerSignatureUrl;
|
||||
@ApiModelProperty(value = "审核签字任务状态 dispatched 下发,non_dispatched 未下发", example = "non_dispatched")
|
||||
private String reviewerSignatureTaskStatus;
|
||||
@ApiModelProperty(value = "审核结果编码:1通过 2退回修改", example = "1")
|
||||
private Integer resultCode;
|
||||
@ApiModelProperty(value = "审核结果名称:通过/退回修改", example = "通过")
|
||||
|
|
|
|||
|
|
@ -150,6 +150,10 @@ public class EvalTechReviewCO {
|
|||
private String draftId;
|
||||
private String reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
@ApiModelProperty(value = "技审人独立签字")
|
||||
private String reviewerSignatureUrl;
|
||||
@ApiModelProperty(value = "审核签字任务状态 dispatched 下发,non_dispatched 未下发", example = "non_dispatched")
|
||||
private String reviewerSignatureTaskStatus;
|
||||
@ApiModelProperty(value = "审核结果编码:1通过 2退回修改", example = "1")
|
||||
private Integer resultCode;
|
||||
@ApiModelProperty(value = "审核结果名称:通过/退回修改", example = "通过")
|
||||
|
|
|
|||
|
|
@ -140,6 +140,10 @@ public class EvalInternalReviewSaveCmd {
|
|||
private String draftId;
|
||||
private String reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
@ApiModelProperty(value = "内审人独立签字")
|
||||
private String reviewerSignatureUrl;
|
||||
@ApiModelProperty(value = "审核签字任务状态 dispatched 下发,non_dispatched 未下发", example = "non_dispatched")
|
||||
private String reviewerSignatureTaskStatus;
|
||||
@ApiModelProperty(value = "审核结果编码:1通过 2退回修改", example = "1")
|
||||
private Integer resultCode;
|
||||
@ApiModelProperty(value = "审核结果名称:通过/退回修改", example = "通过")
|
||||
|
|
|
|||
|
|
@ -140,6 +140,10 @@ public class EvalTechReviewSaveCmd {
|
|||
private String draftId;
|
||||
private String reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
@ApiModelProperty(value = "技审人独立签字")
|
||||
private String reviewerSignatureUrl;
|
||||
@ApiModelProperty(value = "审核签字任务状态 dispatched 下发,non_dispatched 未下发", example = "non_dispatched")
|
||||
private String reviewerSignatureTaskStatus;
|
||||
@ApiModelProperty(value = "审核结果编码:1通过 2退回修改", example = "1")
|
||||
private Integer resultCode;
|
||||
@ApiModelProperty(value = "审核结果名称:通过/退回修改", example = "通过")
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ public class EvalInternalReviewEntity {
|
|||
private Long draftId;
|
||||
private Long reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
/** 内审人独立签字 */
|
||||
private String reviewerSignatureUrl;
|
||||
/** 审核签字任务状态 dispatched 下发,non_dispatched 未下发 */
|
||||
private String reviewerSignatureTaskStatus;
|
||||
private Integer resultCode;
|
||||
private String resultName;
|
||||
private String opinionContent;
|
||||
|
|
|
|||
|
|
@ -13,6 +13,10 @@ public class EvalTechReviewEntity {
|
|||
private Long draftId;
|
||||
private Long reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
/** 技审人独立签字 */
|
||||
private String reviewerSignatureUrl;
|
||||
/** 审核签字任务状态 dispatched 下发,non_dispatched 未下发 */
|
||||
private String reviewerSignatureTaskStatus;
|
||||
private Integer resultCode;
|
||||
private String resultName;
|
||||
private String opinionContent;
|
||||
|
|
|
|||
|
|
@ -14,6 +14,10 @@ public class EvalInternalReviewDO {
|
|||
private Long draftId;
|
||||
private Long reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
/** 内审人独立签字 */
|
||||
private String reviewerSignatureUrl;
|
||||
/** 审核签字任务状态 dispatched 下发,non_dispatched 未下发 */
|
||||
private String reviewerSignatureTaskStatus;
|
||||
/** 审核结果编码:1通过 2退回修改,示例:1 */
|
||||
private Integer resultCode;
|
||||
/** 审核结果名称:通过/退回修改,示例:通过 */
|
||||
|
|
|
|||
|
|
@ -14,6 +14,10 @@ public class EvalTechReviewDO {
|
|||
private Long draftId;
|
||||
private Long reviewerPersonnelId;
|
||||
private String reviewerName;
|
||||
/** 技审人独立签字 */
|
||||
private String reviewerSignatureUrl;
|
||||
/** 审核签字任务状态 dispatched 下发,non_dispatched 未下发 */
|
||||
private String reviewerSignatureTaskStatus;
|
||||
/** 审核结果编码:1通过 2退回修改,示例:1 */
|
||||
private Integer resultCode;
|
||||
/** 审核结果名称:通过/退回修改,示例:通过 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue