xiejun
2023-08-30 db5ed49b5473b63bf08c4e0c7ffa752ed35a3a95
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;
   /**
    * 编码规则主键
@@ -243,23 +243,23 @@
   /**
    * 获取 码段类型
    */
   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 +620,8 @@
   @Override
   public String toString() {
      return "CodeBasicSecDTO{" +
            "sectype='" + sectype + '\'' +
            ", sectypeText='" + sectypeText + '\'' +
            "sectype='" + secType + '\'' +
            ", secTypeText='" + secTypeText + '\'' +
            ", pkCodeRule='" + pkCodeRule + '\'' +
            ", orderNum=" + orderNum +
            ", referBtmId='" + referBtmId + '\'' +