Browse Source

feat(用户登录信息):增加当前客户名称

chenlong 4 years ago
parent
commit
5e8830891e

+ 1 - 0
smart-city-platform/src/main/java/com/bz/smart_city/commom/security/mobile/MobileLoginUserDetailService.java

@@ -120,6 +120,7 @@ public class MobileLoginUserDetailService implements UserDetailsService {
 
             Site site = siteMapper.findById(siteId);
             loginUser.setCustomerId(site.getCustomerId());
+            loginUser.setCustomerName(site.getCustomerName());
             loginUser.setOrgId(siteUser.getOrganId());
 
             //查询数据权限

+ 3 - 0
smart-city-platform/src/main/java/com/bz/smart_city/dto/LoginUser.java

@@ -34,6 +34,9 @@ public class LoginUser extends User implements UserDetails {
     //客户Id
     private Integer customerId;
 
+    //客户名称
+    private String customerName;
+
 
     //当前选择的站点id
     private Integer currentSiteId;

+ 4 - 1
smart-city-platform/src/main/java/com/bz/smart_city/entity/Site.java

@@ -31,7 +31,10 @@ public class Site implements Serializable {
     @ApiModelProperty(value = "客户id", position = 5)
     private Integer customerId;
 
-    @ApiModelProperty(value = "状态", position = 5, hidden = true)
+    @ApiModelProperty(value = "客户名称", position = 6)
+    private String customerName;
+
+    @ApiModelProperty(value = "状态", position = 7, hidden = true)
     private Integer status;
 
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")

+ 4 - 1
smart-city-platform/src/main/resources/mapper/SiteMapper.xml

@@ -192,7 +192,10 @@
         <if test="id != null"> and id != #{id}</if>
     </select>
     <select id="findById" resultMap="BaseResultMap">
-        select <include refid="Base_Column_List"/> from sc_site where status = 1 and id = #{siteId}
+        select ss.*,sc.customer_name
+        from sc_site as ss
+        left join sc_customer as sc on (sc.id = ss.customer_id)
+        where ss.status = 1 and ss.id = #{siteId}
     </select>
     <select id="findByCustomerIdUnique" resultType="int">
         select count(1) from sc_site where status = 1 and customer_id = #{customerId}