Commit 80b06444 authored by wangyangyang's avatar wangyangyang

修改版本

parent e06876c4
package com.yonde.dex.basic.common.vo; package com.yonde.dex.basic.common.vo;
import javax.validation.constraints.NotBlank;
import java.util.Date;
import java.time.LocalDateTime;
import java.util.ArrayList;
import cn.hutool.core.convert.Convert;
import com.yonde.dex.basedata.entity.annotation.XmlElementProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.yonde.dex.context.common.vo.DxContextVO;
import lombok.ToString;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.math.BigInteger;
import org.springframework.data.annotation.Transient;
import lombok.experimental.Delegate;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.XmlAttribute;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.NotNull;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.yonde.dex.basedata.entity.xmladapters.LocalDateTimeXmlAdapter; import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
import lombok.Data;
import com.yonde.dex.basedata.entity.annotation.*;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
import com.yonde.dex.basedata.entity.vo.IdOnlyVO;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.lang.TypeReference;
import com.yonde.dex.basedata.entity.data.VersionRelationType;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOHolder;
import com.yonde.dex.basedata.entity.vo.DxIdVOEmbeddable; import com.yonde.dex.basedata.entity.vo.DxIdVOEmbeddable;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOEmbeddable; import com.yonde.dex.basedata.entity.vo.IdOnlyVO;
import com.yonde.dex.basedata.entity.vo.IdVO; import com.yonde.dex.basedata.entity.vo.IdVO;
import com.yonde.dex.linkdata.plugin.common.DxLinkDataVOHolder; import com.yonde.dex.context.common.vo.DxContextVO;
import com.yonde.dex.linkdata.plugin.common.DxLinkDataVOEmbeddable; import com.yonde.dex.linkdata.plugin.common.DxLinkDataVOEmbeddable;
import com.yonde.dex.basedata.entity.users.DxUserVO; import com.yonde.dex.linkdata.plugin.common.DxLinkDataVOHolder;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOEmbeddable;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOHolder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/** /**
* @description: ExtProgramProjectLink-VO * @description: ExtProgramProjectLink-VO
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@JsonTypeInfo( use = JsonTypeInfo.Id.CLASS, property = "dxClassname", visible = true, defaultImpl = ExtProgramProjectLinkVO.class) @JsonTypeInfo( use = JsonTypeInfo.Id.CLASS, property = "dxClassname", visible = true, defaultImpl = ExtProgramProjectLinkVO.class)
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Data @Data
......
...@@ -14,8 +14,6 @@ import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOEmbedda ...@@ -14,8 +14,6 @@ import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOEmbedda
import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOHolder; import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOHolder;
import com.yonde.dex.lcycle.plugin.common.entity.DxLifecycleManageBaseVOEmbeddable; import com.yonde.dex.lcycle.plugin.common.entity.DxLifecycleManageBaseVOEmbeddable;
import com.yonde.dex.lcycle.plugin.common.entity.DxLifecycleManageBaseVOHolder; import com.yonde.dex.lcycle.plugin.common.entity.DxLifecycleManageBaseVOHolder;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOEmbeddable;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOHolder;
import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOEmbeddable; import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOEmbeddable;
import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOHolder; import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOHolder;
import com.yonde.dex.user.common.vo.DxOrganizationVO; import com.yonde.dex.user.common.vo.DxOrganizationVO;
...@@ -31,18 +29,17 @@ import java.util.List; ...@@ -31,18 +29,17 @@ import java.util.List;
* @description: ExtProgram-VO * @description: ExtProgram-VO
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@JsonTypeInfo( use = JsonTypeInfo.Id.CLASS, property = "dxClassname", visible = true, defaultImpl = ExtProgramVO.class) @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, property = "dxClassname", visible = true, defaultImpl = ExtProgramVO.class)
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@Data @Data
@ToString(callSuper = true) @ToString(callSuper = true)
public class ExtProgramVO extends IdOnlyVO implements IdVO ,DxLifecycleManageBaseVOHolder ,DxObjFileLinkVOHolder ,DxLogicDeleteVOHolder ,DxSecretVOHolder{ public class ExtProgramVO extends IdOnlyVO implements IdVO, DxLifecycleManageBaseVOHolder, DxObjFileLinkVOHolder, DxSecretVOHolder {
public static final String DX_OBJ_FILE_LINK_EMBEDDABLE_PROP_NAME = "dxObjFileLinkEmbeddable"; public static final String DX_OBJ_FILE_LINK_EMBEDDABLE_PROP_NAME = "dxObjFileLinkEmbeddable";
public static final String DX_LIFECYCLE_MANAGE_BASE_EMBEDDABLE_PROP_NAME = "dxLifecycleManageBaseEmbeddable"; public static final String DX_LIFECYCLE_MANAGE_BASE_EMBEDDABLE_PROP_NAME = "dxLifecycleManageBaseEmbeddable";
public static final String DX_ID_EMBEDDABLE_PROP_NAME = "dxIdEmbeddable"; public static final String DX_ID_EMBEDDABLE_PROP_NAME = "dxIdEmbeddable";
public static final String DX_LOGIC_DELETE_EMBEDDABLE_PROP_NAME = "dxLogicDeleteEmbeddable";
public static final String DX_SECRET_EMBEDDABLE_PROP_NAME = "dxSecretEmbeddable"; public static final String DX_SECRET_EMBEDDABLE_PROP_NAME = "dxSecretEmbeddable";
public static final String BUDGET_AMOUNT_PROP_NAME = "budgetAmount"; public static final String BUDGET_AMOUNT_PROP_NAME = "budgetAmount";
public static final String CUSTOM_UNIT_PROP_NAME = "customUnit"; public static final String CUSTOM_UNIT_PROP_NAME = "customUnit";
...@@ -84,13 +81,6 @@ public class ExtProgramVO extends IdOnlyVO implements IdVO ,DxLifecycleManageBas ...@@ -84,13 +81,6 @@ public class ExtProgramVO extends IdOnlyVO implements IdVO ,DxLifecycleManageBas
@JsonIgnore @JsonIgnore
private DxIdVOEmbeddable dxIdEmbeddable; private DxIdVOEmbeddable dxIdEmbeddable;
/**
* 扩展VO属性
*/
@DexEmbedded()
@JsonIgnore
private DxLogicDeleteVOEmbeddable dxLogicDeleteEmbeddable;
/** /**
* 扩展VO属性 * 扩展VO属性
*/ */
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.basic.expand.plugin.DxViewVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.basic.expand.plugin.DxViewVOPluginExpand;
* @description: DxView-VOExpand扩展实体 * @description: DxView-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.basic.expand.entity.DxViewVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.basic.expand.entity.DxViewVOExpand;
* @description: DxView-扩展VO插件接口 * @description: DxView-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxViewVOPluginExpand<V extends DxViewVOPluginExpand> { public interface DxViewVOPluginExpand<V extends DxViewVOPluginExpand> {
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand;
* @description: DxContextEnterprise-VOExpand扩展实体 * @description: DxContextEnterprise-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand;
* @description: DxContextLibrary-VOExpand扩展实体 * @description: DxContextLibrary-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand;
* @description: DxContextProduction-VOExpand扩展实体 * @description: DxContextProduction-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.context.expand.entity.DxContextVOExpand;
* @description: DxContextProject-VOExpand扩展实体 * @description: DxContextProject-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.context.expand.plugin.DxContextTeamMemberVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.context.expand.plugin.DxContextTeamMemberVOPluginExpand;
* @description: DxContextTeamMember-VOExpand扩展实体 * @description: DxContextTeamMember-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.context.expand.plugin.DxContextTeamVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.context.expand.plugin.DxContextTeamVOPluginExpand;
* @description: DxContextTeam-VOExpand扩展实体 * @description: DxContextTeam-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -9,7 +9,6 @@ import com.yonde.dex.basedata.entity.data.VersionRelationType; ...@@ -9,7 +9,6 @@ import com.yonde.dex.basedata.entity.data.VersionRelationType;
import com.yonde.dex.basic.common.vo.ExtProgramProjectLinkVO; import com.yonde.dex.basic.common.vo.ExtProgramProjectLinkVO;
import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand; import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand;
import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOEmbeddable; import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOEmbeddable;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOEmbeddable;
import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOEmbeddable; import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOEmbeddable;
import com.yonde.dex.user.common.vo.DxOrganizationVO; import com.yonde.dex.user.common.vo.DxOrganizationVO;
import com.yonde.dex.user.common.vo.DxUserInfoVO; import com.yonde.dex.user.common.vo.DxUserInfoVO;
...@@ -25,14 +24,13 @@ import java.util.List; ...@@ -25,14 +24,13 @@ import java.util.List;
* @description: DxContext-VOExpand扩展实体 * @description: DxContext-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
@ToString(callSuper = true) @ToString(callSuper = true)
public class DxContextVOExpand<V extends DxContextVOPluginExpand> implements Serializable{ public class DxContextVOExpand<V extends DxContextVOPluginExpand> implements Serializable{
public static final String DX_OBJ_FILE_LINK_EMBEDDABLE_PROP_NAME = "dxObjFileLinkEmbeddable"; public static final String DX_OBJ_FILE_LINK_EMBEDDABLE_PROP_NAME = "dxObjFileLinkEmbeddable";
public static final String DX_LOGIC_DELETE_EMBEDDABLE_PROP_NAME = "dxLogicDeleteEmbeddable";
public static final String DX_SECRET_EMBEDDABLE_PROP_NAME = "dxSecretEmbeddable"; public static final String DX_SECRET_EMBEDDABLE_PROP_NAME = "dxSecretEmbeddable";
public static final String BUDGET_AMOUNT_PROP_NAME = "budgetAmount"; public static final String BUDGET_AMOUNT_PROP_NAME = "budgetAmount";
public static final String CUSTOM_UNIT_PROP_NAME = "customUnit"; public static final String CUSTOM_UNIT_PROP_NAME = "customUnit";
...@@ -60,13 +58,6 @@ public class DxContextVOExpand<V extends DxContextVOPluginExpand> implements Ser ...@@ -60,13 +58,6 @@ public class DxContextVOExpand<V extends DxContextVOPluginExpand> implements Ser
@JsonIgnore @JsonIgnore
private DxObjFileLinkVOEmbeddable dxObjFileLinkEmbeddable; private DxObjFileLinkVOEmbeddable dxObjFileLinkEmbeddable;
/**
* 扩展VO属性
*/
@DexEmbedded()
@JsonIgnore
private DxLogicDeleteVOEmbeddable dxLogicDeleteEmbeddable;
/** /**
* 扩展VO属性 * 扩展VO属性
*/ */
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand;
* @description: DxContextEnterprise-扩展VO插件接口 * @description: DxContextEnterprise-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextEnterpriseVOPluginExpand<V extends DxContextEnterpriseVOPluginExpand> { public interface DxContextEnterpriseVOPluginExpand<V extends DxContextEnterpriseVOPluginExpand> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand;
* @description: DxContextLibrary-扩展VO插件接口 * @description: DxContextLibrary-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextLibraryVOPluginExpand<V extends DxContextLibraryVOPluginExpand> { public interface DxContextLibraryVOPluginExpand<V extends DxContextLibraryVOPluginExpand> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand;
* @description: DxContextProduction-扩展VO插件接口 * @description: DxContextProduction-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextProductionVOPluginExpand<V extends DxContextProductionVOPluginExpand> { public interface DxContextProductionVOPluginExpand<V extends DxContextProductionVOPluginExpand> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.context.expand.plugin.DxContextVOPluginExpand;
* @description: DxContextProject-扩展VO插件接口 * @description: DxContextProject-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextProjectVOPluginExpand<V extends DxContextProjectVOPluginExpand> { public interface DxContextProjectVOPluginExpand<V extends DxContextProjectVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamMemberVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamMemberVOExpand;
* @description: DxContextTeamMember-扩展VO插件接口 * @description: DxContextTeamMember-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextTeamMemberVOPluginExpand<V extends DxContextTeamMemberVOPluginExpand> { public interface DxContextTeamMemberVOPluginExpand<V extends DxContextTeamMemberVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamVOExpand;
* @description: DxContextTeam-扩展VO插件接口 * @description: DxContextTeam-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxContextTeamVOPluginExpand<V extends DxContextTeamVOPluginExpand> { public interface DxContextTeamVOPluginExpand<V extends DxContextTeamVOPluginExpand> {
......
package com.yonde.dex.context.expand.plugin; package com.yonde.dex.context.expand.plugin;
import com.yonde.dex.basedata.entity.vo.IdVO; import com.yonde.dex.basedata.entity.vo.IdVO;
import com.yonde.dex.context.expand.entity.DxContextVOExpand; import com.yonde.dex.context.expand.entity.DxContextVOExpand;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOHolder;
import com.yonde.dex.logicdelete.plugin.common.entity.DxLogicDeleteVOEmbeddable;
import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOHolder; import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOHolder;
import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOEmbeddable; import com.yonde.dex.secretcode.plugin.common.entity.DxSecretVOEmbeddable;
import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOHolder; import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOHolder;
...@@ -11,9 +9,9 @@ import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOEmbedda ...@@ -11,9 +9,9 @@ import com.yonde.dex.dfs.objfilelink.plugin.common.entity.DxObjFileLinkVOEmbedda
* @description: DxContext-扩展VO插件接口 * @description: DxContext-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextVOPluginExpand<V extends DxContextVOPluginExpand> extends DxObjFileLinkVOHolder ,DxLogicDeleteVOHolder ,DxSecretVOHolder{ public interface DxContextVOPluginExpand<V extends DxContextVOPluginExpand> extends DxObjFileLinkVOHolder ,DxSecretVOHolder{
DxContextVOExpand<V> getDxContextExpand(); DxContextVOExpand<V> getDxContextExpand();
...@@ -24,18 +22,10 @@ public interface DxContextVOPluginExpand<V extends DxContextVOPluginExpand> exte ...@@ -24,18 +22,10 @@ public interface DxContextVOPluginExpand<V extends DxContextVOPluginExpand> exte
getDxContextExpand().setDxObjFileLinkEmbeddable(dxObjFileLinkVOEmbeddable); getDxContextExpand().setDxObjFileLinkEmbeddable(dxObjFileLinkVOEmbeddable);
} }
@Override @Override
default void setDxLogicDeleteEmbeddable(DxLogicDeleteVOEmbeddable dxLogicDeleteVOEmbeddable) {
getDxContextExpand().setDxLogicDeleteEmbeddable(dxLogicDeleteVOEmbeddable);
}
@Override
default void setDxSecretEmbeddable(DxSecretVOEmbeddable dxSecretVOEmbeddable) { default void setDxSecretEmbeddable(DxSecretVOEmbeddable dxSecretVOEmbeddable) {
getDxContextExpand().setDxSecretEmbeddable(dxSecretVOEmbeddable); getDxContextExpand().setDxSecretEmbeddable(dxSecretVOEmbeddable);
} }
@Override @Override
default DxLogicDeleteVOEmbeddable getDxLogicDeleteEmbeddable() {
return getDxContextExpand().getDxLogicDeleteEmbeddable();
}
@Override
default DxObjFileLinkVOEmbeddable getDxObjFileLinkEmbeddable() { default DxObjFileLinkVOEmbeddable getDxObjFileLinkEmbeddable() {
return getDxContextExpand().getDxObjFileLinkEmbeddable(); return getDxContextExpand().getDxObjFileLinkEmbeddable();
} }
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxGroupLinkVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxGroupLinkVOPluginExpand;
* @description: DxGroupLink-VOExpand扩展实体 * @description: DxGroupLink-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxGroupMemberLinkVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxGroupMemberLinkVOPluginExpand;
* @description: DxGroupMemberLink-VOExpand扩展实体 * @description: DxGroupMemberLink-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand;
* @description: DxGroup-VOExpand扩展实体 * @description: DxGroup-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxOrganizationGroupLinkVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxOrganizationGroupLinkVOPluginExpand;
* @description: DxOrganizationGroupLink-VOExpand扩展实体 * @description: DxOrganizationGroupLink-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand;
* @description: DxOrganization-VOExpand扩展实体 * @description: DxOrganization-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPostMemberLinkVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPostMemberLinkVOPluginExpand;
* @description: DxPostMemberLink-VOExpand扩展实体 * @description: DxPostMemberLink-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPostVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPostVOPluginExpand;
* @description: DxPost-VOExpand扩展实体 * @description: DxPost-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalLinkVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalLinkVOPluginExpand;
* @description: DxPrincipalLink-VOExpand扩展实体 * @description: DxPrincipalLink-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand; ...@@ -20,7 +20,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand;
* @description: DxPrincipal-VOExpand扩展实体 * @description: DxPrincipal-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -21,7 +21,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand; ...@@ -21,7 +21,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand;
* @description: DxUserInfo-VOExpand扩展实体 * @description: DxUserInfo-VOExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@EqualsAndHashCode @EqualsAndHashCode
@Data @Data
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxGroupLinkVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxGroupLinkVOExpand;
* @description: DxGroupLink-扩展VO插件接口 * @description: DxGroupLink-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxGroupLinkVOPluginExpand<V extends DxGroupLinkVOPluginExpand> { public interface DxGroupLinkVOPluginExpand<V extends DxGroupLinkVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxGroupMemberLinkVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxGroupMemberLinkVOExpand;
* @description: DxGroupMemberLink-扩展VO插件接口 * @description: DxGroupMemberLink-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxGroupMemberLinkVOPluginExpand<V extends DxGroupMemberLinkVOPluginExpand> { public interface DxGroupMemberLinkVOPluginExpand<V extends DxGroupMemberLinkVOPluginExpand> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand;
* @description: DxGroup-扩展VO插件接口 * @description: DxGroup-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxGroupVOPluginExpand<V extends DxGroupVOPluginExpand> { public interface DxGroupVOPluginExpand<V extends DxGroupVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxOrganizationGroupLinkVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxOrganizationGroupLinkVOExpand;
* @description: DxOrganizationGroupLink-扩展VO插件接口 * @description: DxOrganizationGroupLink-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxOrganizationGroupLinkVOPluginExpand<V extends DxOrganizationGroupLinkVOPluginExpand> { public interface DxOrganizationGroupLinkVOPluginExpand<V extends DxOrganizationGroupLinkVOPluginExpand> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand;
* @description: DxOrganization-扩展VO插件接口 * @description: DxOrganization-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxOrganizationVOPluginExpand<V extends DxOrganizationVOPluginExpand> { public interface DxOrganizationVOPluginExpand<V extends DxOrganizationVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPostMemberLinkVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPostMemberLinkVOExpand;
* @description: DxPostMemberLink-扩展VO插件接口 * @description: DxPostMemberLink-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxPostMemberLinkVOPluginExpand<V extends DxPostMemberLinkVOPluginExpand> { public interface DxPostMemberLinkVOPluginExpand<V extends DxPostMemberLinkVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPostVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPostVOExpand;
* @description: DxPost-扩展VO插件接口 * @description: DxPost-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxPostVOPluginExpand<V extends DxPostVOPluginExpand> { public interface DxPostVOPluginExpand<V extends DxPostVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalLinkVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalLinkVOExpand;
* @description: DxPrincipalLink-扩展VO插件接口 * @description: DxPrincipalLink-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxPrincipalLinkVOPluginExpand<V extends DxPrincipalLinkVOPluginExpand> { public interface DxPrincipalLinkVOPluginExpand<V extends DxPrincipalLinkVOPluginExpand> {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalVOExpand;
* @description: DxPrincipal-扩展VO插件接口 * @description: DxPrincipal-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxPrincipalVOPluginExpand<V extends DxPrincipalVOPluginExpand> { public interface DxPrincipalVOPluginExpand<V extends DxPrincipalVOPluginExpand> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand; ...@@ -6,7 +6,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalVOPluginExpand;
* @description: DxUserInfo-扩展VO插件接口 * @description: DxUserInfo-扩展VO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxUserInfoVOPluginExpand<V extends DxUserInfoVOPluginExpand> { public interface DxUserInfoVOPluginExpand<V extends DxUserInfoVOPluginExpand> {
......
...@@ -10,7 +10,7 @@ import com.yonde.dex.context.core.service.ContextService; ...@@ -10,7 +10,7 @@ import com.yonde.dex.context.core.service.ContextService;
/** /**
* @description: dex-bmodel-core-CONFIG * @description: dex-bmodel-core-CONFIG
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Component @Component
public class DexBasicServiceAppServiceConfig extends AbstractDexAppServiceReplacer { public class DexBasicServiceAppServiceConfig extends AbstractDexAppServiceReplacer {
......
...@@ -19,7 +19,7 @@ import org.springframework.stereotype.Controller; ...@@ -19,7 +19,7 @@ import org.springframework.stereotype.Controller;
* @description: ExtProgram-Controller * @description: ExtProgram-Controller
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Api(tags = "ExtProgram管理服务") @Api(tags = "ExtProgram管理服务")
@RequestMapping("/ExtProgram") @RequestMapping("/ExtProgram")
......
...@@ -19,7 +19,7 @@ import org.springframework.stereotype.Controller; ...@@ -19,7 +19,7 @@ import org.springframework.stereotype.Controller;
* @description: ExtProgramProjectLink-Controller * @description: ExtProgramProjectLink-Controller
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Api(tags = "ExtProgramProjectLink管理服务") @Api(tags = "ExtProgramProjectLink管理服务")
@RequestMapping("/ExtProgramProjectLink") @RequestMapping("/ExtProgramProjectLink")
......
...@@ -19,7 +19,7 @@ import com.yonde.dex.context.core.controller.ContextController; ...@@ -19,7 +19,7 @@ import com.yonde.dex.context.core.controller.ContextController;
* @description: DxContext-Controller * @description: DxContext-Controller
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@Api(tags = "DxContext管理服务") @Api(tags = "DxContext管理服务")
@RequestMapping("/DxContext") @RequestMapping("/DxContext")
......
...@@ -19,7 +19,7 @@ import com.yonde.dex.dfs.objfilelink.plugin.core.controller.DxObjFileLinkControl ...@@ -19,7 +19,7 @@ import com.yonde.dex.dfs.objfilelink.plugin.core.controller.DxObjFileLinkControl
* @description: DxContext-Controller * @description: DxContext-Controller
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public class ExtDxContextControllerShadow<V extends DxContextVO, S extends ExtDxContextService<V>> extends ContextController<V, S> implements DxObjFileLinkController<V, S>{ public class ExtDxContextControllerShadow<V extends DxContextVO, S extends ExtDxContextService<V>> extends ContextController<V, S> implements DxObjFileLinkController<V, S>{
......
...@@ -20,7 +20,7 @@ import com.yonde.dex.baseweb.AbstractBaseController; ...@@ -20,7 +20,7 @@ import com.yonde.dex.baseweb.AbstractBaseController;
* @description: ExtProgram-Controller * @description: ExtProgram-Controller
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public class ExtProgramControllerShadow<V extends ExtProgramVO, S extends ExtProgramService<V>> implements AbstractBaseController<V, S> ,AbstractLifecycleBaseController<V, S> ,DxObjFileLinkController<V, S>{ public class ExtProgramControllerShadow<V extends ExtProgramVO, S extends ExtProgramService<V>> implements AbstractBaseController<V, S> ,AbstractLifecycleBaseController<V, S> ,DxObjFileLinkController<V, S>{
......
...@@ -19,7 +19,7 @@ import com.yonde.dex.baseweb.AbstractBaseController; ...@@ -19,7 +19,7 @@ import com.yonde.dex.baseweb.AbstractBaseController;
* @description: ExtProgramProjectLink-Controller * @description: ExtProgramProjectLink-Controller
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public class ExtProgramProjectLinkControllerShadow<V extends ExtProgramProjectLinkVO, S extends ExtProgramProjectLinkService<V>> implements AbstractBaseController<V, S> ,DxLinkDataController<V, S>{ public class ExtProgramProjectLinkControllerShadow<V extends ExtProgramProjectLinkVO, S extends ExtProgramProjectLinkService<V>> implements AbstractBaseController<V, S> ,DxLinkDataController<V, S>{
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.repository.shadow.ExtProgramProjectLinkRepositor ...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.repository.shadow.ExtProgramProjectLinkRepositor
* @description: ExtProgramProjectLink-repository * @description: ExtProgramProjectLink-repository
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtProgramProjectLinkRepository<P extends ExtProgramProjectLink> extends ExtProgramProjectLinkRepositoryShadow<P> { public interface ExtProgramProjectLinkRepository<P extends ExtProgramProjectLink> extends ExtProgramProjectLinkRepositoryShadow<P> {
} }
...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.repository.shadow.ExtProgramRepositoryShadow; ...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.repository.shadow.ExtProgramRepositoryShadow;
* @description: ExtProgram-repository * @description: ExtProgram-repository
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtProgramRepository<P extends ExtProgram> extends ExtProgramRepositoryShadow<P> { public interface ExtProgramRepository<P extends ExtProgram> extends ExtProgramRepositoryShadow<P> {
} }
...@@ -9,7 +9,7 @@ import com.yonde.dex.linkdata.plugin.core.repository.DxLinkDataRepository; ...@@ -9,7 +9,7 @@ import com.yonde.dex.linkdata.plugin.core.repository.DxLinkDataRepository;
* @description: ExtProgramProjectLink-repository * @description: ExtProgramProjectLink-repository
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@NoRepositoryBean @NoRepositoryBean
public interface ExtProgramProjectLinkRepositoryShadow<P extends ExtProgramProjectLink> extends BaseRepository<P> ,DxLogicDeleteRepository<P> ,DxLinkDataRepository<P> { public interface ExtProgramProjectLinkRepositoryShadow<P extends ExtProgramProjectLink> extends BaseRepository<P> ,DxLogicDeleteRepository<P> ,DxLinkDataRepository<P> {
......
...@@ -2,7 +2,6 @@ package com.yonde.dex.basic.core.repository.shadow; ...@@ -2,7 +2,6 @@ package com.yonde.dex.basic.core.repository.shadow;
import com.yonde.dex.basic.entity.po.ExtProgram; import com.yonde.dex.basic.entity.po.ExtProgram;
import org.springframework.data.repository.NoRepositoryBean; import org.springframework.data.repository.NoRepositoryBean;
import com.yonde.dex.logicdelete.plugin.core.repository.DxLogicDeleteRepository;
import com.yonde.dex.dao.business.repository.BaseRepository; import com.yonde.dex.dao.business.repository.BaseRepository;
import com.yonde.dex.secretcode.plugin.core.repositroy.DxSecretCodePluginRepository; import com.yonde.dex.secretcode.plugin.core.repositroy.DxSecretCodePluginRepository;
import com.yonde.dex.lcycle.plugin.core.repository.DxLifecycleManageBaseRepository; import com.yonde.dex.lcycle.plugin.core.repository.DxLifecycleManageBaseRepository;
...@@ -11,10 +10,10 @@ import com.yonde.dex.dfs.objfilelink.plugin.core.repository.DxObjFileLinkPluginR ...@@ -11,10 +10,10 @@ import com.yonde.dex.dfs.objfilelink.plugin.core.repository.DxObjFileLinkPluginR
* @description: ExtProgram-repository * @description: ExtProgram-repository
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@NoRepositoryBean @NoRepositoryBean
public interface ExtProgramRepositoryShadow<P extends ExtProgram> extends DxObjFileLinkPluginRepository<P> ,DxLifecycleManageBaseRepository<P> ,BaseRepository<P> ,DxLogicDeleteRepository<P> ,DxSecretCodePluginRepository<P> { public interface ExtProgramRepositoryShadow<P extends ExtProgram> extends DxObjFileLinkPluginRepository<P> ,DxLifecycleManageBaseRepository<P> ,BaseRepository<P> ,DxSecretCodePluginRepository<P> {
String BEAN_NAME = "extProgramRepository"; String BEAN_NAME = "extProgramRepository";
} }
...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.service.shadow.ExtProgramProjectLinkServiceShado ...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.service.shadow.ExtProgramProjectLinkServiceShado
* @description: ExtProgramProjectLink-service * @description: ExtProgramProjectLink-service
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtProgramProjectLinkService<V extends ExtProgramProjectLinkVO> extends ExtProgramProjectLinkServiceShadow<V> { public interface ExtProgramProjectLinkService<V extends ExtProgramProjectLinkVO> extends ExtProgramProjectLinkServiceShadow<V> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.service.shadow.ExtProgramServiceShadow; ...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.service.shadow.ExtProgramServiceShadow;
* @description: ExtProgram-service * @description: ExtProgram-service
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtProgramService<V extends ExtProgramVO> extends ExtProgramServiceShadow<V> { public interface ExtProgramService<V extends ExtProgramVO> extends ExtProgramServiceShadow<V> {
......
...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.service.expand.shadow.ExtDxContextServiceShadow; ...@@ -6,7 +6,7 @@ import com.yonde.dex.basic.core.service.expand.shadow.ExtDxContextServiceShadow;
* @description: DxContext-service * @description: DxContext-service
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtDxContextService<V extends DxContextVO> extends ExtDxContextServiceShadow<V> { public interface ExtDxContextService<V extends DxContextVO> extends ExtDxContextServiceShadow<V> {
......
...@@ -4,14 +4,13 @@ import com.yonde.dex.context.common.vo.DxContextVO; ...@@ -4,14 +4,13 @@ import com.yonde.dex.context.common.vo.DxContextVO;
import com.yonde.dex.basic.feign.expand.ExtDxContextServiceFeign; import com.yonde.dex.basic.feign.expand.ExtDxContextServiceFeign;
import com.yonde.dex.context.core.service.ContextService; import com.yonde.dex.context.core.service.ContextService;
import com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService; import com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService;
import com.yonde.dex.logicdelete.plugin.core.service.LogicDeleteService;
import com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService; import com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService;
/** /**
* @description: DxContext-service * @description: DxContext-service
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtDxContextServiceShadow<V extends DxContextVO> extends ExtDxContextServiceFeign<V>, ContextService<V> ,ObjFileLinkPluginService<V> ,LogicDeleteService<V> ,SecretCodePluginService<V> { public interface ExtDxContextServiceShadow<V extends DxContextVO> extends ExtDxContextServiceFeign<V>, ContextService<V> ,ObjFileLinkPluginService<V> ,SecretCodePluginService<V> {
} }
...@@ -17,7 +17,7 @@ import javax.annotation.Resource; ...@@ -17,7 +17,7 @@ import javax.annotation.Resource;
* @description: ExtProgramProjectLink-ServiceImpl * @description: ExtProgramProjectLink-ServiceImpl
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Slf4j @Slf4j
@Service(ExtProgramProjectLinkServiceImpl.BEAN_NAME) @Service(ExtProgramProjectLinkServiceImpl.BEAN_NAME)
......
...@@ -17,7 +17,7 @@ import javax.annotation.Resource; ...@@ -17,7 +17,7 @@ import javax.annotation.Resource;
* @description: ExtProgram-ServiceImpl * @description: ExtProgram-ServiceImpl
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Slf4j @Slf4j
@Service(ExtProgramServiceImpl.BEAN_NAME) @Service(ExtProgramServiceImpl.BEAN_NAME)
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.context.core.service.impl.ContextServiceImpl; ...@@ -18,7 +18,7 @@ import com.yonde.dex.context.core.service.impl.ContextServiceImpl;
* @description: DxContext-ServiceImpl * @description: DxContext-ServiceImpl
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@Slf4j @Slf4j
@Service(ContextServiceImpl.BEAN_NAME) @Service(ContextServiceImpl.BEAN_NAME)
......
...@@ -9,7 +9,7 @@ import com.yonde.dex.logicdelete.plugin.core.service.LogicDeleteService; ...@@ -9,7 +9,7 @@ import com.yonde.dex.logicdelete.plugin.core.service.LogicDeleteService;
* @description: ExtProgramProjectLink-service * @description: ExtProgramProjectLink-service
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtProgramProjectLinkServiceShadow<V extends ExtProgramProjectLinkVO> extends ExtProgramProjectLinkServiceFeign<V>, BaseIdEntityService<V> ,LogicDeleteService<V> ,DxLinkDataService<V> { public interface ExtProgramProjectLinkServiceShadow<V extends ExtProgramProjectLinkVO> extends ExtProgramProjectLinkServiceFeign<V>, BaseIdEntityService<V> ,LogicDeleteService<V> ,DxLinkDataService<V> {
......
...@@ -5,14 +5,13 @@ import com.yonde.dex.basic.feign.ExtProgramServiceFeign; ...@@ -5,14 +5,13 @@ import com.yonde.dex.basic.feign.ExtProgramServiceFeign;
import com.yonde.dex.dao.service.BaseIdEntityService; import com.yonde.dex.dao.service.BaseIdEntityService;
import com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService; import com.yonde.dex.secretcode.plugin.core.service.SecretCodePluginService;
import com.yonde.dex.lcycle.plugin.core.service.LifecycleBaseService; import com.yonde.dex.lcycle.plugin.core.service.LifecycleBaseService;
import com.yonde.dex.logicdelete.plugin.core.service.LogicDeleteService;
import com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService; import com.yonde.dex.dfs.objfilelink.plugin.core.service.ObjFileLinkPluginService;
/** /**
* @description: ExtProgram-service * @description: ExtProgram-service
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface ExtProgramServiceShadow<V extends ExtProgramVO> extends ExtProgramServiceFeign<V>, ObjFileLinkPluginService<V> ,LifecycleBaseService<V> ,BaseIdEntityService<V> ,LogicDeleteService<V> ,SecretCodePluginService<V> { public interface ExtProgramServiceShadow<V extends ExtProgramVO> extends ExtProgramServiceFeign<V>, ObjFileLinkPluginService<V> ,LifecycleBaseService<V> ,BaseIdEntityService<V> ,SecretCodePluginService<V> {
} }
...@@ -32,21 +32,19 @@ import com.yonde.dex.lcycle.plugin.entities.DxLifecycleManageBaseHolder; ...@@ -32,21 +32,19 @@ import com.yonde.dex.lcycle.plugin.entities.DxLifecycleManageBaseHolder;
import com.yonde.dex.dao.entity.base.DxIdEntityEmbeddable; import com.yonde.dex.dao.entity.base.DxIdEntityEmbeddable;
import com.yonde.dex.secretcode.plugin.entities.DxSecretEmbeddable; import com.yonde.dex.secretcode.plugin.entities.DxSecretEmbeddable;
import com.yonde.dex.dao.entity.base.IdOnlyEntity; import com.yonde.dex.dao.entity.base.IdOnlyEntity;
import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteHolder;
import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteEmbeddable;
/** /**
* @description: ExtProgram-PO实体 * @description: ExtProgram-PO实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Entity @Entity
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@NoArgsConstructor @NoArgsConstructor
@Data @Data
@Table(name = "EXT_PROGRAM") @Table(name = "EXT_PROGRAM")
public class ExtProgram extends IdOnlyEntity implements DxObjFileLinkHolder ,DxLifecycleManageBaseHolder ,IdEntity ,DxLogicDeleteHolder ,DxSecretHolder{ public class ExtProgram extends IdOnlyEntity implements DxObjFileLinkHolder ,DxLifecycleManageBaseHolder ,IdEntity ,DxSecretHolder{
/** /**
* 扩展PO属性 * 扩展PO属性
...@@ -71,12 +69,6 @@ public class ExtProgram extends IdOnlyEntity implements DxObjFileLinkHolder ,DxL ...@@ -71,12 +69,6 @@ public class ExtProgram extends IdOnlyEntity implements DxObjFileLinkHolder ,DxL
*/ */
@DexEmbedded() @DexEmbedded()
@Embedded() @Embedded()
private DxLogicDeleteEmbeddable dxLogicDeleteEmbeddable;
/**
* 扩展PO属性
*/
@DexEmbedded()
@Embedded()
private DxSecretEmbeddable dxSecretEmbeddable; private DxSecretEmbeddable dxSecretEmbeddable;
/** /**
* 外协项目预算总额 * 外协项目预算总额
......
...@@ -35,7 +35,7 @@ import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteEmbeddable; ...@@ -35,7 +35,7 @@ import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteEmbeddable;
* @description: ExtProgramProjectLink-PO实体 * @description: ExtProgramProjectLink-PO实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Entity @Entity
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxView-POExpand扩展实体 * @description: DxView-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.basic.expand.entity.DxViewExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.basic.expand.entity.DxViewExpand;
* @description: DxView-扩展PO插件接口 * @description: DxView-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxViewPluginExpand { public interface DxViewPluginExpand {
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand;
* @description: DxContextEnterprise-POExpand扩展实体 * @description: DxContextEnterprise-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -14,13 +14,12 @@ import javax.persistence.Column; ...@@ -14,13 +14,12 @@ import javax.persistence.Column;
import com.yonde.dex.basedata.entity.annotation.DexEmbedded; import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
import com.yonde.dex.dfs.objfilelink.plugin.entities.DxObjFileLinkEmbeddable; import com.yonde.dex.dfs.objfilelink.plugin.entities.DxObjFileLinkEmbeddable;
import com.yonde.dex.secretcode.plugin.entities.DxSecretEmbeddable; import com.yonde.dex.secretcode.plugin.entities.DxSecretEmbeddable;
import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteEmbeddable;
/** /**
* @description: DxContext-POExpand扩展实体 * @description: DxContext-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
...@@ -39,12 +38,6 @@ public class DxContextExpand implements Serializable{ ...@@ -39,12 +38,6 @@ public class DxContextExpand implements Serializable{
*/ */
@DexEmbedded() @DexEmbedded()
@Embedded() @Embedded()
private DxLogicDeleteEmbeddable dxLogicDeleteEmbeddable;
/**
* 扩展PO属性
*/
@DexEmbedded()
@Embedded()
private DxSecretEmbeddable dxSecretEmbeddable; private DxSecretEmbeddable dxSecretEmbeddable;
/** /**
* 外协项目预算总额 * 外协项目预算总额
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand;
* @description: DxContextLibrary-POExpand扩展实体 * @description: DxContextLibrary-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand;
* @description: DxContextProduction-POExpand扩展实体 * @description: DxContextProduction-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.context.expand.entity.DxContextExpand;
* @description: DxContextProject-POExpand扩展实体 * @description: DxContextProject-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxContextTeam-POExpand扩展实体 * @description: DxContextTeam-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxContextTeamMember-POExpand扩展实体 * @description: DxContextTeamMember-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand;
* @description: DxContextEnterprise-扩展PO插件接口 * @description: DxContextEnterprise-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextEnterprisePluginExpand { public interface DxContextEnterprisePluginExpand {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand;
* @description: DxContextLibrary-扩展PO插件接口 * @description: DxContextLibrary-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextLibraryPluginExpand { public interface DxContextLibraryPluginExpand {
......
...@@ -4,36 +4,26 @@ import com.yonde.dex.dfs.objfilelink.plugin.entities.DxObjFileLinkHolder; ...@@ -4,36 +4,26 @@ import com.yonde.dex.dfs.objfilelink.plugin.entities.DxObjFileLinkHolder;
import com.yonde.dex.dfs.objfilelink.plugin.entities.DxObjFileLinkEmbeddable; import com.yonde.dex.dfs.objfilelink.plugin.entities.DxObjFileLinkEmbeddable;
import com.yonde.dex.secretcode.plugin.entities.DxSecretHolder; import com.yonde.dex.secretcode.plugin.entities.DxSecretHolder;
import com.yonde.dex.secretcode.plugin.entities.DxSecretEmbeddable; import com.yonde.dex.secretcode.plugin.entities.DxSecretEmbeddable;
import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteHolder;
import com.yonde.dex.logicdelete.plugin.entities.DxLogicDeleteEmbeddable;
/** /**
* @description: DxContext-扩展PO插件接口 * @description: DxContext-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextPluginExpand extends DxObjFileLinkHolder ,DxLogicDeleteHolder ,DxSecretHolder{ public interface DxContextPluginExpand extends DxObjFileLinkHolder ,DxSecretHolder{
DxContextExpand getDxContextExpand(); DxContextExpand getDxContextExpand();
void setDxContextExpand(DxContextExpand dxContextExpand); void setDxContextExpand(DxContextExpand dxContextExpand);
@Override
default void setDxLogicDeleteEmbeddable(DxLogicDeleteEmbeddable dxLogicDeleteEmbeddable) {
getDxContextExpand().setDxLogicDeleteEmbeddable(dxLogicDeleteEmbeddable);
}
// @Override // @Override
// default void setDxObjFileLinkEmbeddable(DxObjFileLinkEmbeddable dxObjFileLinkEmbeddable) { default void setDxObjFileLinkEmbeddable(DxObjFileLinkEmbeddable dxObjFileLinkEmbeddable) {
// getDxContextExpand().setDxObjFileLinkEmbeddable(dxObjFileLinkEmbeddable); getDxContextExpand().setDxObjFileLinkEmbeddable(dxObjFileLinkEmbeddable);
// }
@Override
default DxLogicDeleteEmbeddable getDxLogicDeleteEmbeddable() {
return getDxContextExpand().getDxLogicDeleteEmbeddable();
} }
// @Override // @Override
// default DxObjFileLinkEmbeddable getDxObjFileLinkEmbeddable() { default DxObjFileLinkEmbeddable getDxObjFileLinkEmbeddable() {
// return getDxContextExpand().getDxObjFileLinkEmbeddable(); return getDxContextExpand().getDxObjFileLinkEmbeddable();
// } }
@Override @Override
default void setDxSecretEmbeddable(DxSecretEmbeddable dxSecretEmbeddable) { default void setDxSecretEmbeddable(DxSecretEmbeddable dxSecretEmbeddable) {
getDxContextExpand().setDxSecretEmbeddable(dxSecretEmbeddable); getDxContextExpand().setDxSecretEmbeddable(dxSecretEmbeddable);
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand;
* @description: DxContextProduction-扩展PO插件接口 * @description: DxContextProduction-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextProductionPluginExpand { public interface DxContextProductionPluginExpand {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.context.expand.plugin.DxContextPluginExpand;
* @description: DxContextProject-扩展PO插件接口 * @description: DxContextProject-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxContextProjectPluginExpand { public interface DxContextProjectPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamMemberExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamMemberExpand;
* @description: DxContextTeamMember-扩展PO插件接口 * @description: DxContextTeamMember-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxContextTeamMemberPluginExpand { public interface DxContextTeamMemberPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.context.expand.entity.DxContextTeamExpand;
* @description: DxContextTeam-扩展PO插件接口 * @description: DxContextTeam-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxContextTeamPluginExpand { public interface DxContextTeamPluginExpand {
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand;
* @description: DxGroup-POExpand扩展实体 * @description: DxGroup-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:02 * @date: 2024-8-30 14:05:31
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxGroupLink-POExpand扩展实体 * @description: DxGroupLink-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxGroupMemberLink-POExpand扩展实体 * @description: DxGroupMemberLink-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand;
* @description: DxOrganization-POExpand扩展实体 * @description: DxOrganization-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxOrganizationGroupLink-POExpand扩展实体 * @description: DxOrganizationGroupLink-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxPost-POExpand扩展实体 * @description: DxPost-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxPostMemberLink-POExpand扩展实体 * @description: DxPostMemberLink-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxPrincipal-POExpand扩展实体 * @description: DxPrincipal-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded; ...@@ -17,7 +17,7 @@ import com.yonde.dex.basedata.entity.annotation.DexEmbedded;
* @description: DxPrincipalLink-POExpand扩展实体 * @description: DxPrincipalLink-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -18,7 +18,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand; ...@@ -18,7 +18,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand;
* @description: DxUserInfo-POExpand扩展实体 * @description: DxUserInfo-POExpand扩展实体
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@ToString @ToString
@Embeddable @Embeddable
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxGroupLinkExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxGroupLinkExpand;
* @description: DxGroupLink-扩展PO插件接口 * @description: DxGroupLink-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxGroupLinkPluginExpand { public interface DxGroupLinkPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxGroupMemberLinkExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxGroupMemberLinkExpand;
* @description: DxGroupMemberLink-扩展PO插件接口 * @description: DxGroupMemberLink-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxGroupMemberLinkPluginExpand { public interface DxGroupMemberLinkPluginExpand {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalPluginExpand;
* @description: DxGroup-扩展PO插件接口 * @description: DxGroup-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:02 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxGroupPluginExpand { public interface DxGroupPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxOrganizationGroupLinkExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxOrganizationGroupLinkExpand;
* @description: DxOrganizationGroupLink-扩展PO插件接口 * @description: DxOrganizationGroupLink-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxOrganizationGroupLinkPluginExpand { public interface DxOrganizationGroupLinkPluginExpand {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalPluginExpand;
* @description: DxOrganization-扩展PO插件接口 * @description: DxOrganization-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxOrganizationPluginExpand { public interface DxOrganizationPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPostMemberLinkExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPostMemberLinkExpand;
* @description: DxPostMemberLink-扩展PO插件接口 * @description: DxPostMemberLink-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxPostMemberLinkPluginExpand { public interface DxPostMemberLinkPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPostExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPostExpand;
* @description: DxPost-扩展PO插件接口 * @description: DxPost-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxPostPluginExpand { public interface DxPostPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalLinkExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalLinkExpand;
* @description: DxPrincipalLink-扩展PO插件接口 * @description: DxPrincipalLink-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:31
**/ **/
public interface DxPrincipalLinkPluginExpand { public interface DxPrincipalLinkPluginExpand {
......
...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand; ...@@ -4,7 +4,7 @@ import com.yonde.dex.user.expand.entity.DxPrincipalExpand;
* @description: DxPrincipal-扩展PO插件接口 * @description: DxPrincipal-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxPrincipalPluginExpand { public interface DxPrincipalPluginExpand {
......
...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalPluginExpand; ...@@ -5,7 +5,7 @@ import com.yonde.dex.user.expand.plugin.DxPrincipalPluginExpand;
* @description: DxUserInfo-扩展PO插件接口 * @description: DxUserInfo-扩展PO插件接口
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
public interface DxUserInfoPluginExpand { public interface DxUserInfoPluginExpand {
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>dex-basic-service-expand-feign</artifactId> <artifactId>dex-basic-service-expand-feign</artifactId>
<version>4.1-20240826-RELEASE</version>
<properties> <properties>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target> <maven.compiler.target>8</maven.compiler.target>
...@@ -67,7 +66,7 @@ ...@@ -67,7 +66,7 @@
<!-- <dependency>--> <!-- <dependency>-->
<!-- <groupId>com.yonde.dcs</groupId>--> <!-- <groupId>com.yonde.dcs</groupId>-->
<!-- <artifactId>dcs-doc-expand-feign</artifactId>--> <!-- <artifactId>dcs-doc-expand-feign</artifactId>-->
<!-- <version>4.1-20240826-RELEASE</version>--> <!-- <version>4.1-20240826-RELEASE</version>-->
<!-- </dependency>--> <!-- </dependency>-->
</dependencies> </dependencies>
......
...@@ -10,7 +10,7 @@ import com.yonde.dex.basic.feign.shadow.ExtProgramProjectLinkServiceFeignShadow; ...@@ -10,7 +10,7 @@ import com.yonde.dex.basic.feign.shadow.ExtProgramProjectLinkServiceFeignShadow;
* @description: ExtProgramProjectLink-Feign * @description: ExtProgramProjectLink-Feign
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Api(tags = "ExtProgramProjectLink-FEIGN") @Api(tags = "ExtProgramProjectLink-FEIGN")
@FeignClient(value = "${dex.feign.DEX-BASIC-SERVICE}", path = "/ExtProgramProjectLink") @FeignClient(value = "${dex.feign.DEX-BASIC-SERVICE}", path = "/ExtProgramProjectLink")
......
...@@ -10,7 +10,7 @@ import com.yonde.dex.basic.feign.shadow.ExtProgramServiceFeignShadow; ...@@ -10,7 +10,7 @@ import com.yonde.dex.basic.feign.shadow.ExtProgramServiceFeignShadow;
* @description: ExtProgram-Feign * @description: ExtProgram-Feign
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:04 * @date: 2024-8-30 14:05:32
**/ **/
@Api(tags = "ExtProgram-FEIGN") @Api(tags = "ExtProgram-FEIGN")
@FeignClient(value = "${dex.feign.DEX-BASIC-SERVICE}", path = "/ExtProgram") @FeignClient(value = "${dex.feign.DEX-BASIC-SERVICE}", path = "/ExtProgram")
......
...@@ -12,7 +12,7 @@ import com.yonde.dex.dao.service.adapter.DexExpandBeanReplace; ...@@ -12,7 +12,7 @@ import com.yonde.dex.dao.service.adapter.DexExpandBeanReplace;
* @description: DxContext-Feign * @description: DxContext-Feign
* @author: dexadmin * @author: dexadmin
* @version: V * @version: V
* @date: 2024-8-28 17:09:03 * @date: 2024-8-30 14:05:32
**/ **/
@Api(tags = "DxContext-FEIGN") @Api(tags = "DxContext-FEIGN")
@FeignClient(value = "${dex.feign.DEX-BASIC-SERVICE}", path = "/DxContext") @FeignClient(value = "${dex.feign.DEX-BASIC-SERVICE}", path = "/DxContext")
......
This diff is collapsed.
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