Browse Source

添加金蝶科目代码名称

yzc 11 months ago
parent
commit
02b263d963

+ 9 - 0
hx-common/src/main/java/com/fjhx/common/entity/art/po/ArtCopyright.java

@@ -24,4 +24,13 @@ public class ArtCopyright extends BasePo {
 
     private Long companyId;
 
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
+
 }

+ 9 - 0
hx-common/src/main/java/com/fjhx/common/entity/contractor/po/Contractor.java

@@ -53,4 +53,13 @@ public class Contractor extends BasePo {
      */
     private Long companyId;
 
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
+
 }

+ 9 - 0
hx-common/src/main/java/com/fjhx/common/entity/logistics/po/LogisticsCompanyInfo.java

@@ -65,4 +65,13 @@ public class LogisticsCompanyInfo extends BasePo {
      */
     private Long companyId;
 
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
+
 }

+ 8 - 0
hx-common/src/main/java/com/fjhx/common/entity/patent/po/Patent.java

@@ -23,5 +23,13 @@ public class Patent extends BasePo {
     private String name;
 
     private Long companyId;
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
 
 }

+ 9 - 0
hx-common/src/main/java/com/fjhx/common/entity/trademark/po/Trademark.java

@@ -24,4 +24,13 @@ public class Trademark extends BasePo {
 
     private Long companyId;
 
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
+
 }

+ 3 - 1
hx-common/src/main/resources/mapper/art/ArtCopyrightMapper.xml

@@ -9,7 +9,9 @@
                ac.create_user,
                ac.create_time,
                ac.update_user,
-               ac.update_time
+               ac.update_time,
+               ac.jd_subject_code,
+               ac.jd_subject_name
         from art_copyright ac
             ${ew.customSqlSegment}
     </select>

+ 3 - 1
hx-common/src/main/resources/mapper/contractor/ContractorMapper.xml

@@ -13,7 +13,9 @@
                c.create_user,
                c.create_time,
                c.update_user,
-               c.update_time
+               c.update_time,
+               c.jd_subject_code,
+               c.jd_subject_name
         from contractor c
             ${ew.customSqlSegment}
     </select>

+ 3 - 1
hx-common/src/main/resources/mapper/patent/PatentMapper.xml

@@ -9,7 +9,9 @@
                p.create_user,
                p.create_time,
                p.update_user,
-               p.update_time
+               p.update_time,
+               p.jd_subject_code,
+               p.jd_subject_name
         from patent p
             ${ew.customSqlSegment}
     </select>

+ 3 - 1
hx-common/src/main/resources/mapper/trademark/TrademarkMapper.xml

@@ -9,7 +9,9 @@
                t.create_user,
                t.create_time,
                t.update_user,
-               t.update_time
+               t.update_time,
+               t.jd_subject_code,
+               t.jd_subject_name
         from trademark t
             ${ew.customSqlSegment}
     </select>

+ 9 - 0
hx-jushuitan/src/main/java/com/fjhx/jushuitan/entity/shop/po/ShopInfo.java

@@ -48,4 +48,13 @@ public class ShopInfo extends BasePo {
      */
     private String accountNumber;
 
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
+
 }

+ 3 - 1
hx-jushuitan/src/main/resources/mapper/shop/ShopInfoMapper.xml

@@ -12,7 +12,9 @@
                si.create_user,
                si.create_time,
                si.update_user,
-               si.update_time
+               si.update_time,
+               si.jd_subject_code,
+               si.jd_subject_name
         from shop_info si
             ${ew.customSqlSegment}
     </select>

+ 8 - 0
hx-supply/src/main/java/com/fjhx/supply/entity/supplier/po/SupplierInfo.java

@@ -176,5 +176,13 @@ public class SupplierInfo extends BasePo {
      */
     private String privTaxPoints;
 
+    /**
+     * 金蝶科目代码
+     */
+    private String jdSubjectCode;
+    /**
+     * 金蝶科目名称
+     */
+    private String jdSubjectName;
 
 }