Commit 6a00e86f authored by wangyangyang's avatar wangyangyang

设计评审:1.勾选密级

     2.评审类型
     3 .专家组名单  String
parent d239bd52
......@@ -55,7 +55,7 @@ import com.yonde.dex.version.plugin.common.entity.DxIterationVOHolder;
* @description: ExtDesignReviewNotice-VO
* @author: dexadmin
* @version: V
* @date: 2024-10-29 16:36:01
* @date: 2024-11-1 15:13:13
**/
@JsonTypeInfo( use = JsonTypeInfo.Id.CLASS, property = "dxClassname", visible = true, defaultImpl = ExtDesignReviewNoticeVO.class)
@EqualsAndHashCode(callSuper = true)
......@@ -74,6 +74,7 @@ public class ExtDesignReviewNoticeVO extends IdOnlyVO implements IdVO ,DxContext
public static final String EDIT_UNIT_PROP_NAME = "editUnit";
public static final String EDIT_UNIT_ID_PROP_NAME = "editUnitId";
public static final String EDIT_UNIT_ID_TYPE_PROP_NAME = "editUnitIdType";
public static final String EXPERT_GROUP_LIST_PROP_NAME = "expertGroupList";
public static final String EXT_DESIGN_NOTICE_MINUTES_LINKS_PROP_NAME = "extDesignNoticeMinutesLinks";
public static final String HOST_PROP_NAME = "host";
public static final String HOST_ID_PROP_NAME = "hostId";
......@@ -88,6 +89,7 @@ public class ExtDesignReviewNoticeVO extends IdOnlyVO implements IdVO ,DxContext
public static final String REVIEW_LOCATION_PROP_NAME = "reviewLocation";
public static final String REVIEW_THEME_PROP_NAME = "reviewTheme";
public static final String REVIEW_TIME_PROP_NAME = "reviewTime";
public static final String REVIEW_TYPE_PROP_NAME = "reviewType";
public static final String SEND_DEPARTMENT_PROP_NAME = "sendDepartment";
public static final String SEND_PERSON_PROP_NAME = "sendPerson";
......@@ -164,6 +166,11 @@ public class ExtDesignReviewNoticeVO extends IdOnlyVO implements IdVO ,DxContext
*/
private String editUnitIdType;
/**
* 专家组名单
*/
private String expertGroupList;
/**
* 设计评审通知纪要link集合
*/
......@@ -240,6 +247,11 @@ public class ExtDesignReviewNoticeVO extends IdOnlyVO implements IdVO ,DxContext
*/
private LocalDateTime reviewTime;
/**
* 评审类型
*/
private String reviewType;
/**
* 发送部门
*/
......
......@@ -45,7 +45,7 @@ import com.yonde.dex.version.plugin.entities.DxIterationEmbeddable;
* @description: ExtDesignReviewNotice-PO实体
* @author: dexadmin
* @version: V
* @date: 2024-10-29 16:36:00
* @date: 2024-11-1 15:13:13
**/
@Entity
@EqualsAndHashCode(callSuper = true)
......@@ -111,6 +111,10 @@ public class ExtDesignReviewNotice extends IdOnlyEntity implements DxContextHold
*/
private String editUnitIdType;
/**
* 专家组名单
*/
private String expertGroupList;
/**
* 主持人的id
*/
private Long hostId;
......@@ -155,6 +159,10 @@ public class ExtDesignReviewNotice extends IdOnlyEntity implements DxContextHold
*/
private LocalDateTime reviewTime;
/**
* 评审类型
*/
private String reviewType;
/**
* 发送部门
*/
private String sendDepartment;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment