Commit f38295c3 authored by wei's avatar wei 🎱

移交单增加字段项目群名称

parent 781170ce
......@@ -55,7 +55,7 @@ import com.yonde.dex.version.plugin.common.entity.DxIterationVOHolder;
* @description: ExtTransferDocument-VO
* @author: dexadmin
* @version: V
* @date: 2024-10-31 14:17:34
* @date: 2024-11-4 13:39:55
**/
@JsonTypeInfo( use = JsonTypeInfo.Id.CLASS, property = "dxClassname", visible = true, defaultImpl = ExtTransferDocumentVO.class)
@EqualsAndHashCode(callSuper = true)
......@@ -86,6 +86,7 @@ public class ExtTransferDocumentVO extends IdOnlyVO implements IdVO ,DxContextVO
public static final String EXT_TRANSFER_DOC_LINKS_PROP_NAME = "extTransferDocLinks";
public static final String HANDOVER_TIME_PROP_NAME = "handoverTime";
public static final String PROJECT_CODE_PROP_NAME = "projectCode";
public static final String PROJECT_GROUP_NAME_PROP_NAME = "projectGroupName";
public static final String PROJECT_NAME_PROP_NAME = "projectName";
public static final String TOPIC_TITLE_PROP_NAME = "topicTitle";
......@@ -146,7 +147,7 @@ public class ExtTransferDocumentVO extends IdOnlyVO implements IdVO ,DxContextVO
private DxSecretVOEmbeddable dxSecretEmbeddable;
/**
* 归档说明
* 移交说明
*/
private String archivingInstructions;
......@@ -178,19 +179,19 @@ public class ExtTransferDocumentVO extends IdOnlyVO implements IdVO ,DxContextVO
private String dxRecipientUserInfoIdType;
/**
* 移交人组织
* 移交人部门
*/
@ReferenceProperty(baseProperty = "dxTransferDocOrgId")
@VersionProperty(curVersion = VersionRelationType.ITERATION, refVersion = VersionRelationType.NONE)
private DxOrganizationVO dxTransferDocOrg;
/**
* 移交人组织
* 移交人部门
*/
private Long dxTransferDocOrgId;
/**
* 移交人组织
* 移交人部门
*/
private String dxTransferDocOrgIdType;
......@@ -224,17 +225,22 @@ public class ExtTransferDocumentVO extends IdOnlyVO implements IdVO ,DxContextVO
private LocalDateTime handoverTime;
/**
* 项目代号
* 项目代号
*/
private String projectCode;
/**
* 项目群名称
*/
private String projectGroupName;
/**
* 项目名称
*/
private String projectName;
/**
* 课题题名
* 子项名称
*/
private String topicTitle;
......
......@@ -45,7 +45,7 @@ import com.yonde.dex.version.plugin.entities.DxIterationEmbeddable;
* @description: ExtTransferDocument-PO实体
* @author: dexadmin
* @version: V
* @date: 2024-10-31 14:17:34
* @date: 2024-11-4 13:39:55
**/
@Entity
@EqualsAndHashCode(callSuper = true)
......@@ -103,7 +103,7 @@ public class ExtTransferDocument extends IdOnlyEntity implements DxContextHolder
@Embedded()
private DxSecretEmbeddable dxSecretEmbeddable;
/**
* 归档说明
* 移交说明
*/
private String archivingInstructions;
/**
......@@ -123,11 +123,11 @@ public class ExtTransferDocument extends IdOnlyEntity implements DxContextHolder
*/
private String dxRecipientUserInfoIdType;
/**
* 移交人组织的id
* 移交人部门的id
*/
private Long dxTransferDocOrgId;
/**
* 移交人组织的类型
* 移交人部门的类型
*/
private String dxTransferDocOrgIdType;
/**
......@@ -143,15 +143,19 @@ public class ExtTransferDocument extends IdOnlyEntity implements DxContextHolder
*/
private LocalDateTime handoverTime;
/**
* 项目代号
* 项目代号
*/
private String projectCode;
/**
* 项目群名称
*/
private String projectGroupName;
/**
* 项目名称
*/
private String projectName;
/**
* 课题题名
* 子项名称
*/
private String topicTitle;
}
......
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