diff --git a/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BNet.java b/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BNet.java index e6ec464..82a44fa 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BNet.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BNet.java @@ -2,6 +2,8 @@ package com.ruoyi.system.domain; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; +import lombok.Data; +import lombok.EqualsAndHashCode; /** * 网络对象 b_net @@ -9,6 +11,8 @@ import com.ruoyi.common.core.domain.BaseEntity; * @author ruoyi * @date 2023-11-21 */ +@Data +@EqualsAndHashCode(callSuper = true) public class BNet extends BaseEntity { private static final long serialVersionUID = 1L; @@ -22,6 +26,36 @@ public class BNet extends BaseEntity { */ private Long shanghuId; + /** + * 商户名称 + */ + @Excel(name = "商户名称") + private String posName; + + /** + * 手机号 + */ + @Excel(name = "手机号") + private String phoneNumber; + + /** + * 联系人 + */ + @Excel(name = "联系人") + private String linkMan; + + /** + * 城市 + */ + @Excel(name = "城市") + private String city; + + /** + * 地址信息 + */ + @Excel(name = "地址信息") + private String address; + /** * 网络名称 */ @@ -40,65 +74,4 @@ public class BNet extends BaseEntity { @Excel(name = "wifi密码") private String wifiPass; - public BNet() { - } - - public BNet(Long id, Long shanghuId, String netName, String wifiName, String wifiPass) { - this.id = id; - this.shanghuId = shanghuId; - this.netName = netName; - this.wifiName = wifiName; - this.wifiPass = wifiPass; - } - - @Override - public String toString() { - return "BNet{" + - "id=" + id + - ", shanghuId=" + shanghuId + - ", netName='" + netName + '\'' + - ", wifiName='" + wifiName + '\'' + - ", wifiPass='" + wifiPass + '\'' + - '}'; - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getShanghuId() { - return shanghuId; - } - - public void setShanghuId(Long shanghuId) { - this.shanghuId = shanghuId; - } - - public String getNetName() { - return netName; - } - - public void setNetName(String netName) { - this.netName = netName; - } - - public String getWifiName() { - return wifiName; - } - - public void setWifiName(String wifiName) { - this.wifiName = wifiName; - } - - public String getWifiPass() { - return wifiPass; - } - - public void setWifiPass(String wifiPass) { - this.wifiPass = wifiPass; - } } diff --git a/ruoyi-admin/src/main/resources/mapper/netEwm/BNetMapper.xml b/ruoyi-admin/src/main/resources/mapper/netEwm/BNetMapper.xml index 9153f36..73877b2 100644 --- a/ruoyi-admin/src/main/resources/mapper/netEwm/BNetMapper.xml +++ b/ruoyi-admin/src/main/resources/mapper/netEwm/BNetMapper.xml @@ -14,23 +14,51 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + + + + - select id,net_name, shanghu_id, wifi_name, wifi_pass, create_by, create_time, update_by, update_time, remark from b_net + select bn.id, + bn.net_name, + bn.shanghu_id, + bn.wifi_name, + bn.wifi_pass, + bn.create_by, + bn.create_time, + bn.update_by, + bn.update_time, + bn.remark, + bs.pos_name, + bs.phone_number, + bs.link_man, + bs.city, + bs.address + from b_net bn + left join b_shanghu bs on bn.shanghu_id = bs.id