Explorar el Código

ljx:修改企业实体的分类类型,xml文件新增查询返回type number

ljx hace 1 mes
padre
commit
edd0f1ba64

+ 19 - 3
enteprise-admin/src/main/java/com/enteprise/enterprise/domain/Enterprise.java

@@ -30,13 +30,29 @@ public class Enterprise extends BaseEntity
     @Excel(name = "行业代码")
     private String code;
 
-    private Long typeNum;
+    /**
+     * 分类编码
+     */
+    private String typeNum;
 
-    public Long getTypeNum() {
+    /**
+     * 企业名称
+     */
+    private String typeName;
+
+    public String getTypeName() {
+        return typeName;
+    }
+
+    public void setTypeName(String typeName) {
+        this.typeName = typeName;
+    }
+
+    public String getTypeNum() {
         return typeNum;
     }
 
-    public void setTypeNum(Long typeNum) {
+    public void setTypeNum(String typeNum) {
         this.typeNum = typeNum;
     }
 

+ 1 - 1
enteprise-admin/src/main/resources/mapper/enterprise/EnterpriseMapper.xml

@@ -65,7 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     </delete>
 
     <select id="selectAllWithType" parameterType="Enterprise">
-        SELECT a.id, a.enterprise_name enterpriseName, a.location, a.code, b.name typeName
+        SELECT a.id, a.enterprise_name enterpriseName, a.location, a.code,  a.type_num typeNum, b.name typeName
         from enterprise a
         left join enterprise_type b
         on a.type_num = b.number