From c0c75703071327c172f9dfbe14f2ca47abfa10a5 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期二, 07 十一月 2023 10:35:57 +0800 Subject: [PATCH] bug列表158(所有规则增加前缀、后缀属性,并在申请编码时进行前后缀拼接)修复;集成系统信息管理,创建修改删除,同步到用户的账号创建、删除、修改操作。 --- Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/dto/CodeBasicSecDTO.java | 80 +++++++++++++++++++++++++++++++--------- 1 files changed, 62 insertions(+), 18 deletions(-) diff --git a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/dto/CodeBasicSecDTO.java b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/dto/CodeBasicSecDTO.java index 26a0a2c..2c58126 100644 --- a/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/dto/CodeBasicSecDTO.java +++ b/Source/UBCS/ubcs-service-api/ubcs-code-api/src/main/java/com/vci/ubcs/code/dto/CodeBasicSecDTO.java @@ -1,7 +1,7 @@ package com.vci.ubcs.code.dto; -import com.vci.starter.web.pagemodel.BaseModelVO; +import com.vci.ubcs.starter.revision.model.BaseModel; /** * 鐮佹鍩虹淇℃伅鏁版嵁浼犺緭瀵硅薄 @@ -9,7 +9,7 @@ * @author weidy * @date 2022-01-24 */ -public class CodeBasicSecDTO extends BaseModelVO { +public class CodeBasicSecDTO extends BaseModel { /** * 绂佹淇敼杩欎釜鍊� @@ -19,12 +19,12 @@ /** * 鐮佹绫诲瀷 */ - private String sectype; + private String secType; /** * 鐮佹绫诲瀷鏄剧ず鏂囨湰 */ - private String sectypeText; + private String secTypeText; /** * 缂栫爜瑙勫垯涓婚敭 @@ -81,7 +81,6 @@ * 鐮佹闀垮害 */ private String codeSecLength; - /** * 灞傜骇绫诲瀷 @@ -148,7 +147,6 @@ */ private String filterSql ; - /** * 娴佹按鍙疯捣濮嬪�� */ @@ -158,7 +156,6 @@ * 娴佹按鐨勬闀� */ private Integer serialStep; - /** * 缂栫爜琛ヤ綅鏂瑰紡 @@ -210,7 +207,6 @@ */ private String parentClassifySecText; - /** * 鏄惁鍙互涓虹┖ */ @@ -240,26 +236,74 @@ * 閫夋嫨鐮佹淇℃伅鐨勪富閿泦鍚� */ private String oidArr; + + /** + * 淇敼鐮佹绫诲瀷鏃舵槸鍚︽竻绌虹爜鍊� + */ + private Boolean isClearValue; + + /** + * 鍓嶇紑 + */ + private String prefixCode; + + /** + * 鍚庣紑 + */ + private String suffixCode; + + public Boolean getClearValue() { + return isClearValue; + } + + public String getPrefixCode() { + return prefixCode; + } + + public String getSuffixCode() { + return suffixCode; + } + + public void setClearValue(Boolean clearValue) { + isClearValue = clearValue; + } + + public void setPrefixCode(String prefixCode) { + this.prefixCode = prefixCode; + } + + public void setSuffixCode(String suffixCode) { + this.suffixCode = suffixCode; + } + + public Boolean getIsClearValue() { + return isClearValue; + } + + public void setIsClearValue(Boolean clearValue) { + isClearValue = clearValue; + } + /** * 鑾峰彇 鐮佹绫诲瀷 */ - public String getSectype (){ - return sectype; + public String getSecType (){ + return secType; } /** * 璁剧疆 鐮佹绫诲瀷 */ - public void setSectype (String sectype){ - this.sectype = sectype; + public void setSecType (String sectype){ + this.secType = sectype; } - public String getSectypeText() { - return sectypeText; + public String getSecTypeText() { + return secTypeText; } - public void setSectypeText(String sectypeText) { - this.sectypeText = sectypeText; + public void setSecTypeText(String secTypeText) { + this.secTypeText = secTypeText; } /** @@ -620,8 +664,8 @@ @Override public String toString() { return "CodeBasicSecDTO{" + - "sectype='" + sectype + '\'' + - ", sectypeText='" + sectypeText + '\'' + + "sectype='" + secType + '\'' + + ", secTypeText='" + secTypeText + '\'' + ", pkCodeRule='" + pkCodeRule + '\'' + ", orderNum=" + orderNum + ", referBtmId='" + referBtmId + '\'' + -- Gitblit v1.9.3