diff --git a/muyu-auth/src/main/resources/bootstrap.yml b/muyu-auth/src/main/resources/bootstrap.yml
index b309a3d..8b5278e 100644
--- a/muyu-auth/src/main/resources/bootstrap.yml
+++ b/muyu-auth/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置
diff --git a/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ObjUtils.java b/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ObjUtils.java
new file mode 100644
index 0000000..4499d08
--- /dev/null
+++ b/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ObjUtils.java
@@ -0,0 +1,65 @@
+package com.muyu.common.core.utils;
+
+import org.apache.commons.lang3.ObjectUtils;
+
+import java.math.BigDecimal;
+
+/**
+ * @author DongZl
+ * @description: 对象工具类
+ * @Date 2023-10-9 下午 04:56
+ */
+public class ObjUtils {
+
+ /**
+ * 兼容
+ * CharSequence: 如果长度为零,则认为为空。
+ * Array: 如果长度为零,则认为为空。
+ * Collection: 如果元素为零,则认为为空。
+ * Map: 如果键值映射为零,则认为为空。
+ * @param o 对象
+ * @return 如果对象具有受支持的类型并且为空或null,则为true,否则为false
+ */
+ public static boolean notNull(Object o){
+ return ObjectUtils.isNotEmpty(o);
+ }
+
+ /**
+ * 判断long类型不为0
+ * @param val 值
+ * @return 返回值不为0
+ */
+ public static boolean notNull(Long val){
+ return ObjectUtils.isNotEmpty(val) && val != 0;
+ }
+
+ /**
+ * 判断Integer类型不为0
+ * @param val 值
+ * @return 返回值不为0
+ */
+ public static boolean notNull(Integer val){
+ return ObjectUtils.isNotEmpty(val) && val != 0;
+ }
+ /**
+ * 判断BigDecimal类型不为0
+ * @param val 值
+ * @return 返回值不为0
+ */
+ public static boolean notNull(BigDecimal val){
+ return ObjectUtils.isNotEmpty(val) && val.doubleValue() == 0.00;
+ }
+ /**
+ * 判断BigDecimal类型不为0
+ * @param val 值
+ * @return 返回值不为0
+ */
+ public static boolean notChildNull(Object[] val){
+ for (Object o : val) {
+ if (!notNull(o)){
+ return false;
+ }
+ }
+ return true;
+ }
+}
diff --git a/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ip/IpUtils.java b/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ip/IpUtils.java
index f7ad9bf..66fa70b 100644
--- a/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ip/IpUtils.java
+++ b/muyu-common/muyu-common-core/src/main/java/com/muyu/common/core/utils/ip/IpUtils.java
@@ -58,7 +58,7 @@ public class IpUtils {
ip = request.getRemoteAddr();
}
- return "0:0:0:0:0:0:0:1".equals(ip) ? "127.0.0.1" : getMultistageReverseProxyIp(ip);
+ return "0:0:0:0:0:0:0:1".equals(ip) ? "115.159.67.205" : getMultistageReverseProxyIp(ip);
}
/**
@@ -70,7 +70,7 @@ public class IpUtils {
*/
public static boolean internalIp (String ip) {
byte[] addr = textToNumericFormatV4(ip);
- return internalIp(addr) || "127.0.0.1".equals(ip);
+ return internalIp(addr) || "115.159.67.205".equals(ip);
}
/**
@@ -197,7 +197,7 @@ public class IpUtils {
return InetAddress.getLocalHost().getHostAddress();
} catch (UnknownHostException e) {
}
- return "127.0.0.1";
+ return "115.159.67.205";
}
/**
diff --git a/muyu-common/muyu-common-system/src/main/java/com/muyu/common/system/domain/SysUser.java b/muyu-common/muyu-common-system/src/main/java/com/muyu/common/system/domain/SysUser.java
index 6be7436..1d16e26 100644
--- a/muyu-common/muyu-common-system/src/main/java/com/muyu/common/system/domain/SysUser.java
+++ b/muyu-common/muyu-common-system/src/main/java/com/muyu/common/system/domain/SysUser.java
@@ -132,6 +132,19 @@ public class SysUser extends BaseEntity {
*/
private Long[] postIds;
+ /**
+ * 角色类型
+ * */
+ private String userType;
+
+ public String getUserType() {
+ return userType;
+ }
+
+ public void setUserType(String userType) {
+ this.userType = userType;
+ }
+
/**
* 角色ID
*/
@@ -323,6 +336,7 @@ public class SysUser extends BaseEntity {
.append("updateTime", getUpdateTime())
.append("remark", getRemark())
.append("dept", getDept())
+ .append("userType", getUserType())
.toString();
}
}
diff --git a/muyu-gateway/src/main/resources/bootstrap.yml b/muyu-gateway/src/main/resources/bootstrap.yml
index d7367b4..9219669 100644
--- a/muyu-gateway/src/main/resources/bootstrap.yml
+++ b/muyu-gateway/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置
@@ -28,12 +29,12 @@ spring:
eager: true
transport:
# 控制台地址
- dashboard: 127.0.0.1:8718
+ dashboard: 101.34.248.9:8718
# nacos配置持久化
datasource:
ds1:
nacos:
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
dataId: sentinel-muyu-gateway
groupId: DEFAULT_GROUP
data-type: json
diff --git a/muyu-modules/muyu-file/src/main/resources/bootstrap.yml b/muyu-modules/muyu-file/src/main/resources/bootstrap.yml
index 0cb85bd..9f5ba3f 100644
--- a/muyu-modules/muyu-file/src/main/resources/bootstrap.yml
+++ b/muyu-modules/muyu-file/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置
diff --git a/muyu-modules/muyu-gen/src/main/resources/bootstrap.yml b/muyu-modules/muyu-gen/src/main/resources/bootstrap.yml
index b628931..3b5beed 100644
--- a/muyu-modules/muyu-gen/src/main/resources/bootstrap.yml
+++ b/muyu-modules/muyu-gen/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置
diff --git a/muyu-modules/muyu-job/src/main/resources/bootstrap.yml b/muyu-modules/muyu-job/src/main/resources/bootstrap.yml
index 618f3e8..779de83 100644
--- a/muyu-modules/muyu-job/src/main/resources/bootstrap.yml
+++ b/muyu-modules/muyu-job/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-client/pom.xml b/muyu-modules/muyu-net-working/muyu-net-working-client/pom.xml
new file mode 100644
index 0000000..0e6b911
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-client/pom.xml
@@ -0,0 +1,20 @@
+
+
+ 4.0.0
+
+ com.muyu
+ muyu-net-working
+ 3.6.3
+
+
+ muyu-net-working-client
+
+
+ 17
+ 17
+ UTF-8
+
+
+
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-common/pom.xml b/muyu-modules/muyu-net-working/muyu-net-working-common/pom.xml
new file mode 100644
index 0000000..0727768
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-common/pom.xml
@@ -0,0 +1,27 @@
+
+
+ 4.0.0
+
+ com.muyu
+ muyu-net-working
+ 3.6.3
+
+
+ muyu-net-working-common
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+ com.muyu
+ muyu-common-core
+
+
+
+
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/Enterprise.java b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/Enterprise.java
new file mode 100644
index 0000000..6a11f5b
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/Enterprise.java
@@ -0,0 +1,196 @@
+package com.muyu.net.working.domain;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.AllArgsConstructor;
+import lombok.experimental.SuperBuilder;
+import io.swagger.annotations.*;
+import com.muyu.common.core.annotation.Excel;
+import com.muyu.net.working.domain.req.EnterpriseQueryReq;
+import com.muyu.net.working.domain.req.EnterpriseSaveReq;
+import com.muyu.net.working.domain.req.EnterpriseEditReq;
+import com.muyu.common.core.web.domain.BaseEntity;
+
+/**
+ * 企业信息对象 enterprise
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+@Data
+@SuperBuilder
+@NoArgsConstructor
+@AllArgsConstructor
+@TableName("enterprise")
+@EqualsAndHashCode(callSuper = true)
+@ApiModel(value = "Enterprise", description = "企业信息")
+public class Enterprise extends BaseEntity {
+
+ private static final long serialVersionUID = 1L;
+
+ /** 主键 */
+ @TableId(value = "id",type = IdType.AUTO)
+ @ApiModelProperty(name = "主键", value = "主键")
+ private String id;
+
+ /** 企业名称 */
+ @Excel(name = "企业名称")
+ @ApiModelProperty(name = "企业名称", value = "企业名称")
+ private String ebterpriseName;
+
+ /** 法定代表人 */
+ @Excel(name = "法定代表人")
+ @ApiModelProperty(name = "法定代表人", value = "法定代表人")
+ private String legalPerson;
+
+ /** 经营执照凭证号码 */
+ @Excel(name = "经营执照凭证号码")
+ @ApiModelProperty(name = "经营执照凭证号码", value = "经营执照凭证号码")
+ private String businessLincenseNumber;
+
+ /** 企业成立时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @Excel(name = "企业成立时间", width = 30, dateFormat = "yyyy-MM-dd")
+ @ApiModelProperty(name = "企业成立时间", value = "企业成立时间")
+ private Date estabinessDate;
+
+ /** 经营范围 */
+ @Excel(name = "经营范围")
+ @ApiModelProperty(name = "经营范围", value = "经营范围")
+ private String businessScope;
+
+ /** 注册地址 */
+ @Excel(name = "注册地址")
+ @ApiModelProperty(name = "注册地址", value = "注册地址")
+ private String address;
+
+ /** 企业联系方式 */
+ @Excel(name = "企业联系方式")
+ @ApiModelProperty(name = "企业联系方式", value = "企业联系方式")
+ private String contactPhone;
+
+ /** 公司邮箱 */
+ @Excel(name = "公司邮箱")
+ @ApiModelProperty(name = "公司邮箱", value = "公司邮箱")
+ private String email;
+
+ /** 企业当前状态 */
+ @Excel(name = "企业当前状态")
+ @ApiModelProperty(name = "企业当前状态", value = "企业当前状态")
+ private String status;
+
+ /** 企业入驻平台时期 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @Excel(name = "企业入驻平台时期", width = 30, dateFormat = "yyyy-MM-dd")
+ @ApiModelProperty(name = "企业入驻平台时期", value = "企业入驻平台时期")
+ private Date registrationDate;
+
+ /** 企业认证id */
+ @Excel(name = "企业认证id")
+ @ApiModelProperty(name = "企业认证id", value = "企业认证id")
+ private Long certificationId;
+
+ /** 认证时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @Excel(name = "认证时间", width = 30, dateFormat = "yyyy-MM-dd")
+ @ApiModelProperty(name = "认证时间", value = "认证时间")
+ private Date authenticationDate;
+
+ /** 服务级别 */
+ @Excel(name = "服务级别")
+ @ApiModelProperty(name = "服务级别", value = "服务级别")
+ private Long serviceLevel;
+
+ /** 开通服务id */
+ @Excel(name = "开通服务id")
+ @ApiModelProperty(name = "开通服务id", value = "开通服务id")
+ private Long openServerId;
+
+ /** 增值服务id */
+ @Excel(name = "增值服务id")
+ @ApiModelProperty(name = "增值服务id", value = "增值服务id")
+ private Long addServerId;
+
+ /**
+ * 查询构造器
+ */
+ public static Enterprise queryBuild( EnterpriseQueryReq enterpriseQueryReq){
+ return Enterprise.builder()
+ .ebterpriseName(enterpriseQueryReq.getEbterpriseName())
+ .legalPerson(enterpriseQueryReq.getLegalPerson())
+ .businessLincenseNumber(enterpriseQueryReq.getBusinessLincenseNumber())
+ .estabinessDate(enterpriseQueryReq.getEstabinessDate())
+ .businessScope(enterpriseQueryReq.getBusinessScope())
+ .address(enterpriseQueryReq.getAddress())
+ .contactPhone(enterpriseQueryReq.getContactPhone())
+ .email(enterpriseQueryReq.getEmail())
+ .status(enterpriseQueryReq.getStatus())
+ .registrationDate(enterpriseQueryReq.getRegistrationDate())
+ .certificationId(enterpriseQueryReq.getCertificationId())
+ .authenticationDate(enterpriseQueryReq.getAuthenticationDate())
+ .serviceLevel(enterpriseQueryReq.getServiceLevel())
+ .openServerId(enterpriseQueryReq.getOpenServerId())
+ .addServerId(enterpriseQueryReq.getAddServerId())
+ .build();
+ }
+
+ /**
+ * 添加构造器
+ */
+ public static Enterprise saveBuild(EnterpriseSaveReq enterpriseSaveReq){
+ return Enterprise.builder()
+ .ebterpriseName(enterpriseSaveReq.getEbterpriseName())
+ .legalPerson(enterpriseSaveReq.getLegalPerson())
+ .businessLincenseNumber(enterpriseSaveReq.getBusinessLincenseNumber())
+ .estabinessDate(enterpriseSaveReq.getEstabinessDate())
+ .businessScope(enterpriseSaveReq.getBusinessScope())
+ .address(enterpriseSaveReq.getAddress())
+ .contactPhone(enterpriseSaveReq.getContactPhone())
+ .email(enterpriseSaveReq.getEmail())
+ .status(enterpriseSaveReq.getStatus())
+ .registrationDate(enterpriseSaveReq.getRegistrationDate())
+ .certificationId(enterpriseSaveReq.getCertificationId())
+ .authenticationDate(enterpriseSaveReq.getAuthenticationDate())
+ .serviceLevel(enterpriseSaveReq.getServiceLevel())
+ .openServerId(enterpriseSaveReq.getOpenServerId())
+ .addServerId(enterpriseSaveReq.getAddServerId())
+ .createBy(enterpriseSaveReq.getCreateBy())
+ .createTime(new Date())
+ .remark(enterpriseSaveReq.getRemark())
+ .build();
+ }
+
+ /**
+ * 修改构造器
+ */
+ public static Enterprise editBuild(String id, EnterpriseEditReq enterpriseEditReq){
+ return Enterprise.builder()
+ .id(id)
+ .ebterpriseName(enterpriseEditReq.getEbterpriseName())
+ .legalPerson(enterpriseEditReq.getLegalPerson())
+ .businessLincenseNumber(enterpriseEditReq.getBusinessLincenseNumber())
+ .estabinessDate(enterpriseEditReq.getEstabinessDate())
+ .businessScope(enterpriseEditReq.getBusinessScope())
+ .address(enterpriseEditReq.getAddress())
+ .contactPhone(enterpriseEditReq.getContactPhone())
+ .email(enterpriseEditReq.getEmail())
+ .status(enterpriseEditReq.getStatus())
+ .registrationDate(enterpriseEditReq.getRegistrationDate())
+ .certificationId(enterpriseEditReq.getCertificationId())
+ .authenticationDate(enterpriseEditReq.getAuthenticationDate())
+ .serviceLevel(enterpriseEditReq.getServiceLevel())
+ .openServerId(enterpriseEditReq.getOpenServerId())
+ .addServerId(enterpriseEditReq.getAddServerId())
+ .updateBy(enterpriseEditReq.getUpdateBy())
+ .updateTime(new Date())
+ .remark(enterpriseEditReq.getRemark())
+ .build();
+ }
+
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseEditReq.java b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseEditReq.java
new file mode 100644
index 0000000..7284615
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseEditReq.java
@@ -0,0 +1,91 @@
+package com.muyu.net.working.domain.req;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.AllArgsConstructor;
+import lombok.experimental.SuperBuilder;
+import io.swagger.annotations.*;
+import com.muyu.common.core.web.domain.BaseEntity;
+
+/**
+ * 企业信息对象 enterprise
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+@Data
+@SuperBuilder
+@NoArgsConstructor
+@AllArgsConstructor
+@ApiModel(value = "EnterpriseEditReq", description = "企业信息")
+public class EnterpriseEditReq extends BaseEntity {
+
+ private static final long serialVersionUID = 1L;
+
+ /** 企业名称 */
+ @ApiModelProperty(name = "企业名称", value = "企业名称")
+ private String ebterpriseName;
+
+ /** 法定代表人 */
+ @ApiModelProperty(name = "法定代表人", value = "法定代表人")
+ private String legalPerson;
+
+ /** 经营执照凭证号码 */
+ @ApiModelProperty(name = "经营执照凭证号码", value = "经营执照凭证号码")
+ private String businessLincenseNumber;
+
+ /** 企业成立时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @ApiModelProperty(name = "企业成立时间", value = "企业成立时间")
+ private Date estabinessDate;
+
+ /** 经营范围 */
+ @ApiModelProperty(name = "经营范围", value = "经营范围")
+ private String businessScope;
+
+ /** 注册地址 */
+ @ApiModelProperty(name = "注册地址", value = "注册地址")
+ private String address;
+
+ /** 企业联系方式 */
+ @ApiModelProperty(name = "企业联系方式", value = "企业联系方式")
+ private String contactPhone;
+
+ /** 公司邮箱 */
+ @ApiModelProperty(name = "公司邮箱", value = "公司邮箱")
+ private String email;
+
+ /** 企业当前状态 */
+ @ApiModelProperty(name = "企业当前状态", value = "企业当前状态")
+ private String status;
+
+ /** 企业入驻平台时期 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @ApiModelProperty(name = "企业入驻平台时期", value = "企业入驻平台时期")
+ private Date registrationDate;
+
+ /** 企业认证id */
+ @ApiModelProperty(name = "企业认证id", value = "企业认证id")
+ private Long certificationId;
+
+ /** 认证时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @ApiModelProperty(name = "认证时间", value = "认证时间")
+ private Date authenticationDate;
+
+ /** 服务级别 */
+ @ApiModelProperty(name = "服务级别", value = "服务级别")
+ private Long serviceLevel;
+
+ /** 开通服务id */
+ @ApiModelProperty(name = "开通服务id", value = "开通服务id")
+ private Long openServerId;
+
+ /** 增值服务id */
+ @ApiModelProperty(name = "增值服务id", value = "增值服务id")
+ private Long addServerId;
+
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseQueryReq.java b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseQueryReq.java
new file mode 100644
index 0000000..2b893a3
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseQueryReq.java
@@ -0,0 +1,91 @@
+package com.muyu.net.working.domain.req;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.AllArgsConstructor;
+import lombok.experimental.SuperBuilder;
+import io.swagger.annotations.*;
+import com.muyu.common.core.web.domain.BaseEntity;
+
+/**
+ * 企业信息对象 enterprise
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+@Data
+@SuperBuilder
+@NoArgsConstructor
+@AllArgsConstructor
+@ApiModel(value = "EnterpriseQueryReq", description = "企业信息")
+public class EnterpriseQueryReq extends BaseEntity {
+
+ private static final long serialVersionUID = 1L;
+
+ /** 企业名称 */
+ @ApiModelProperty(name = "企业名称", value = "企业名称")
+ private String ebterpriseName;
+
+ /** 法定代表人 */
+ @ApiModelProperty(name = "法定代表人", value = "法定代表人")
+ private String legalPerson;
+
+ /** 经营执照凭证号码 */
+ @ApiModelProperty(name = "经营执照凭证号码", value = "经营执照凭证号码")
+ private String businessLincenseNumber;
+
+ /** 企业成立时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @ApiModelProperty(name = "企业成立时间", value = "企业成立时间")
+ private Date estabinessDate;
+
+ /** 经营范围 */
+ @ApiModelProperty(name = "经营范围", value = "经营范围")
+ private String businessScope;
+
+ /** 注册地址 */
+ @ApiModelProperty(name = "注册地址", value = "注册地址")
+ private String address;
+
+ /** 企业联系方式 */
+ @ApiModelProperty(name = "企业联系方式", value = "企业联系方式")
+ private String contactPhone;
+
+ /** 公司邮箱 */
+ @ApiModelProperty(name = "公司邮箱", value = "公司邮箱")
+ private String email;
+
+ /** 企业当前状态 */
+ @ApiModelProperty(name = "企业当前状态", value = "企业当前状态")
+ private String status;
+
+ /** 企业入驻平台时期 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @ApiModelProperty(name = "企业入驻平台时期", value = "企业入驻平台时期")
+ private Date registrationDate;
+
+ /** 企业认证id */
+ @ApiModelProperty(name = "企业认证id", value = "企业认证id")
+ private Long certificationId;
+
+ /** 认证时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+ @ApiModelProperty(name = "认证时间", value = "认证时间")
+ private Date authenticationDate;
+
+ /** 服务级别 */
+ @ApiModelProperty(name = "服务级别", value = "服务级别")
+ private Long serviceLevel;
+
+ /** 开通服务id */
+ @ApiModelProperty(name = "开通服务id", value = "开通服务id")
+ private Long openServerId;
+
+ /** 增值服务id */
+ @ApiModelProperty(name = "增值服务id", value = "增值服务id")
+ private Long addServerId;
+
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseSaveReq.java b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseSaveReq.java
new file mode 100644
index 0000000..03c34b6
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-common/src/main/java/com/muyu/net/working/domain/req/EnterpriseSaveReq.java
@@ -0,0 +1,111 @@
+package com.muyu.net.working.domain.req;
+
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.AllArgsConstructor;
+import lombok.experimental.SuperBuilder;
+import io.swagger.annotations.*;
+import com.muyu.common.core.web.domain.BaseEntity;
+
+/**
+ * 企业信息对象 enterprise
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+@Data
+@SuperBuilder
+@NoArgsConstructor
+@AllArgsConstructor
+@ApiModel(value = "EnterpriseSaveReq", description = "企业信息")
+public class EnterpriseSaveReq extends BaseEntity {
+
+ private static final long serialVersionUID = 1L;
+
+ /** 主键 */
+
+ @ApiModelProperty(name = "主键", value = "主键")
+ private String id;
+
+ /** 企业名称 */
+
+ @ApiModelProperty(name = "企业名称", value = "企业名称")
+ private String ebterpriseName;
+
+ /** 法定代表人 */
+
+ @ApiModelProperty(name = "法定代表人", value = "法定代表人")
+ private String legalPerson;
+
+ /** 经营执照凭证号码 */
+
+ @ApiModelProperty(name = "经营执照凭证号码", value = "经营执照凭证号码")
+ private String businessLincenseNumber;
+
+ /** 企业成立时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+
+ @ApiModelProperty(name = "企业成立时间", value = "企业成立时间")
+ private Date estabinessDate;
+
+ /** 经营范围 */
+
+ @ApiModelProperty(name = "经营范围", value = "经营范围")
+ private String businessScope;
+
+ /** 注册地址 */
+
+ @ApiModelProperty(name = "注册地址", value = "注册地址")
+ private String address;
+
+ /** 企业联系方式 */
+
+ @ApiModelProperty(name = "企业联系方式", value = "企业联系方式")
+ private String contactPhone;
+
+ /** 公司邮箱 */
+
+ @ApiModelProperty(name = "公司邮箱", value = "公司邮箱")
+ private String email;
+
+ /** 企业当前状态 */
+
+ @ApiModelProperty(name = "企业当前状态", value = "企业当前状态")
+ private String status;
+
+ /** 企业入驻平台时期 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+
+ @ApiModelProperty(name = "企业入驻平台时期", value = "企业入驻平台时期")
+ private Date registrationDate;
+
+ /** 企业认证id */
+
+ @ApiModelProperty(name = "企业认证id", value = "企业认证id")
+ private Long certificationId;
+
+ /** 认证时间 */
+ @JsonFormat(pattern = "yyyy-MM-dd")
+
+ @ApiModelProperty(name = "认证时间", value = "认证时间")
+ private Date authenticationDate;
+
+ /** 服务级别 */
+
+ @ApiModelProperty(name = "服务级别", value = "服务级别")
+ private Long serviceLevel;
+
+ /** 开通服务id */
+
+ @ApiModelProperty(name = "开通服务id", value = "开通服务id")
+ private Long openServerId;
+
+ /** 增值服务id */
+
+ @ApiModelProperty(name = "增值服务id", value = "增值服务id")
+ private Long addServerId;
+
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-remote/pom.xml b/muyu-modules/muyu-net-working/muyu-net-working-remote/pom.xml
new file mode 100644
index 0000000..f2fa13a
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-remote/pom.xml
@@ -0,0 +1,20 @@
+
+
+ 4.0.0
+
+ com.muyu
+ muyu-net-working
+ 3.6.3
+
+
+ muyu-net-working-remote
+
+
+ 17
+ 17
+ UTF-8
+
+
+
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/pom.xml b/muyu-modules/muyu-net-working/muyu-net-working-server/pom.xml
new file mode 100644
index 0000000..f684d79
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/pom.xml
@@ -0,0 +1,116 @@
+
+
+ 4.0.0
+
+ com.muyu
+ muyu-net-working
+ 3.6.3
+
+
+ muyu-net-working-server
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+
+ com.muyu
+ muyu-net-working-common
+ 3.6.3
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-discovery
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-config
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-sentinel
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+
+
+ io.springfox
+ springfox-swagger-ui
+ ${swagger.fox.version}
+
+
+
+
+ com.mysql
+ mysql-connector-j
+
+
+
+
+ com.muyu
+ muyu-common-datasource
+
+
+
+
+ com.muyu
+ muyu-common-datascope
+
+
+
+
+ com.muyu
+ muyu-common-log
+
+
+
+
+ com.muyu
+ muyu-common-swagger
+
+
+
+
+
+ ${project.artifactId}
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+ repackage
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-deploy-plugin
+
+ true
+
+
+
+
+
+
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/MuYuNetWorkingApplication.java b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/MuYuNetWorkingApplication.java
new file mode 100644
index 0000000..b0eaf90
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/MuYuNetWorkingApplication.java
@@ -0,0 +1,23 @@
+package com.muyu.net.working;
+
+import com.muyu.common.security.annotation.EnableCustomConfig;
+import com.muyu.common.security.annotation.EnableMyFeignClients;
+import com.muyu.common.swagger.annotation.EnableCustomSwagger2;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+/**
+ * 车联网运营平台启动类 MuYuNetWorkingApplication
+ *
+ * @author DeKangLiu
+ * Date 2024/5/26 21:45
+ */
+@EnableCustomConfig
+@EnableCustomSwagger2
+@EnableMyFeignClients
+@SpringBootApplication
+public class MuYuNetWorkingApplication {
+ public static void main (String[] args) {
+ SpringApplication.run(MuYuNetWorkingApplication.class, args);
+ }
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/controller/EnterpriseController.java b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/controller/EnterpriseController.java
new file mode 100644
index 0000000..0618b4d
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/controller/EnterpriseController.java
@@ -0,0 +1,111 @@
+package com.muyu.net.working.controller;
+
+import java.util.List;
+import javax.servlet.http.HttpServletResponse;
+
+import io.swagger.annotations.*;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.muyu.common.core.domain.Result;
+import com.muyu.common.core.utils.poi.ExcelUtil;
+import com.muyu.common.core.web.controller.BaseController;
+import com.muyu.common.log.annotation.Log;
+import com.muyu.common.log.enums.BusinessType;
+import com.muyu.common.security.annotation.RequiresPermissions;
+import com.muyu.net.working.domain.Enterprise;
+import com.muyu.net.working.domain.req.EnterpriseQueryReq;
+import com.muyu.net.working.domain.req.EnterpriseSaveReq;
+import com.muyu.net.working.domain.req.EnterpriseEditReq;
+import com.muyu.net.working.service.EnterpriseService;
+import com.muyu.common.core.web.page.TableDataInfo;
+
+/**
+ * 企业信息Controller
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+@Api(tags = "企业信息")
+@RestController
+@RequestMapping("/car")
+public class EnterpriseController extends BaseController {
+ @Autowired
+ private EnterpriseService enterpriseService;
+
+ /**
+ * 查询企业信息列表
+ */
+ @ApiOperation("获取企业信息列表")
+ @RequiresPermissions("netWorking:car:list")
+ @GetMapping("/list")
+ public Result> list(EnterpriseQueryReq enterpriseQueryReq) {
+ startPage();
+ List list = enterpriseService.list(Enterprise.queryBuild(enterpriseQueryReq));
+ return getDataTable(list);
+ }
+
+ /**
+ * 导出企业信息列表
+ */
+ @ApiOperation("导出企业信息列表")
+ @RequiresPermissions("netWorking:car:export")
+ @Log(title = "企业信息", businessType = BusinessType.EXPORT)
+ @PostMapping("/export")
+ public void export(HttpServletResponse response, Enterprise enterprise) {
+ List list = enterpriseService.list(enterprise);
+ ExcelUtil util = new ExcelUtil(Enterprise.class);
+ util.exportExcel(response, list, "企业信息数据");
+ }
+
+ /**
+ * 获取企业信息详细信息
+ */
+ @ApiOperation("获取企业信息详细信息")
+ @RequiresPermissions("netWorking:car:query")
+ @GetMapping(value = "/{id}")
+ @ApiImplicitParam(name = "id", value = "id", required = true, dataType = "String", paramType = "path", dataTypeClass = String.class)
+ public Result getInfo(@PathVariable("id") String id) {
+ return Result.success(enterpriseService.getById(id));
+ }
+
+ /**
+ * 新增企业信息
+ */
+ @RequiresPermissions("netWorking:car:add")
+ @Log(title = "企业信息", businessType = BusinessType.INSERT)
+ @PostMapping
+ @ApiOperation("新增企业信息")
+ public Result add(@RequestBody EnterpriseSaveReq enterpriseSaveReq) {
+ return toAjax(enterpriseService.save(Enterprise.saveBuild(enterpriseSaveReq)));
+ }
+
+ /**
+ * 修改企业信息
+ */
+ @RequiresPermissions("netWorking:car:edit")
+ @Log(title = "企业信息", businessType = BusinessType.UPDATE)
+ @PutMapping("/{id}")
+ @ApiOperation("修改企业信息")
+ public Result edit(@PathVariable String id, @RequestBody EnterpriseEditReq enterpriseEditReq) {
+ return toAjax(enterpriseService.updateById(Enterprise.editBuild(id,enterpriseEditReq)));
+ }
+
+ /**
+ * 删除企业信息
+ */
+ @RequiresPermissions("netWorking:car:remove")
+ @Log(title = "企业信息", businessType = BusinessType.DELETE)
+ @DeleteMapping("/{ids}")
+ @ApiOperation("删除企业信息")
+ @ApiImplicitParam(name = "id", value = "id", required = true, dataType = "String", paramType = "path", dataTypeClass = String.class, example = "1,2,3,4")
+ public Result remove(@PathVariable List ids) {
+ return toAjax(enterpriseService.removeBatchByIds(ids));
+ }
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/mapper/EnterpriseMapper.java b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/mapper/EnterpriseMapper.java
new file mode 100644
index 0000000..0a82543
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/mapper/EnterpriseMapper.java
@@ -0,0 +1,15 @@
+package com.muyu.net.working.mapper;
+
+import java.util.List;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.muyu.net.working.domain.Enterprise;
+
+/**
+ * 企业信息Mapper接口
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+public interface EnterpriseMapper extends BaseMapper {
+
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/service/EnterpriseService.java b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/service/EnterpriseService.java
new file mode 100644
index 0000000..5bb5b4a
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/service/EnterpriseService.java
@@ -0,0 +1,22 @@
+package com.muyu.net.working.service;
+
+import java.util.List;
+import com.muyu.net.working.domain.Enterprise;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * 企业信息Service接口
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+public interface EnterpriseService extends IService {
+ /**
+ * 查询企业信息列表
+ *
+ * @param enterprise 企业信息
+ * @return 企业信息集合
+ */
+ public List list(Enterprise enterprise);
+
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/service/impl/EnterpriseServiceImpl.java b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/service/impl/EnterpriseServiceImpl.java
new file mode 100644
index 0000000..5ca6b7d
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/java/com/muyu/net/working/service/impl/EnterpriseServiceImpl.java
@@ -0,0 +1,101 @@
+package com.muyu.net.working.service.impl;
+
+import java.util.List;
+
+import com.muyu.common.core.utils.ObjUtils;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.stereotype.Service;
+import com.muyu.net.working.mapper.EnterpriseMapper;
+import com.muyu.net.working.domain.Enterprise;
+import com.muyu.net.working.service.EnterpriseService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+
+/**
+ * 企业信息Service业务层处理
+ *
+ * @author muyu
+ * @date 2024-05-27
+ */
+@Slf4j
+@Service
+public class EnterpriseServiceImpl extends ServiceImpl implements EnterpriseService {
+
+ /**
+ * 查询企业信息列表
+ *
+ * @param enterprise 企业信息
+ * @return 企业信息
+ */
+ @Override
+ public List list(Enterprise enterprise) {
+ LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>();
+
+
+ if (ObjUtils.notNull(enterprise.getEbterpriseName())){
+ queryWrapper.like(Enterprise::getEbterpriseName, enterprise.getEbterpriseName());
+ }
+
+ if (ObjUtils.notNull(enterprise.getLegalPerson())){
+ queryWrapper.eq(Enterprise::getLegalPerson, enterprise.getLegalPerson());
+ }
+
+ if (ObjUtils.notNull(enterprise.getBusinessLincenseNumber())){
+ queryWrapper.eq(Enterprise::getBusinessLincenseNumber, enterprise.getBusinessLincenseNumber());
+ }
+
+ if (ObjUtils.notNull(enterprise.getEstabinessDate())){
+ queryWrapper.eq(Enterprise::getEstabinessDate, enterprise.getEstabinessDate());
+ }
+
+ if (ObjUtils.notNull(enterprise.getBusinessScope())){
+ queryWrapper.eq(Enterprise::getBusinessScope, enterprise.getBusinessScope());
+ }
+
+ if (ObjUtils.notNull(enterprise.getAddress())){
+ queryWrapper.eq(Enterprise::getAddress, enterprise.getAddress());
+ }
+
+ if (ObjUtils.notNull(enterprise.getContactPhone())){
+ queryWrapper.eq(Enterprise::getContactPhone, enterprise.getContactPhone());
+ }
+
+ if (ObjUtils.notNull(enterprise.getEmail())){
+ queryWrapper.eq(Enterprise::getEmail, enterprise.getEmail());
+ }
+
+ if (ObjUtils.notNull(enterprise.getStatus())){
+ queryWrapper.eq(Enterprise::getStatus, enterprise.getStatus());
+ }
+
+ if (ObjUtils.notNull(enterprise.getRegistrationDate())){
+ queryWrapper.eq(Enterprise::getRegistrationDate, enterprise.getRegistrationDate());
+ }
+
+ if (ObjUtils.notNull(enterprise.getCertificationId())){
+ queryWrapper.eq(Enterprise::getCertificationId, enterprise.getCertificationId());
+ }
+
+ if (ObjUtils.notNull(enterprise.getAuthenticationDate())){
+ queryWrapper.eq(Enterprise::getAuthenticationDate, enterprise.getAuthenticationDate());
+ }
+
+ if (ObjUtils.notNull(enterprise.getServiceLevel())){
+ queryWrapper.eq(Enterprise::getServiceLevel, enterprise.getServiceLevel());
+ }
+
+ if (ObjUtils.notNull(enterprise.getOpenServerId())){
+ queryWrapper.eq(Enterprise::getOpenServerId, enterprise.getOpenServerId());
+ }
+
+ if (ObjUtils.notNull(enterprise.getAddServerId())){
+ queryWrapper.eq(Enterprise::getAddServerId, enterprise.getAddServerId());
+ }
+
+
+
+
+
+ return list(queryWrapper);
+ }
+}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/banner.txt b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/banner.txt
new file mode 100644
index 0000000..0dd5eee
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/banner.txt
@@ -0,0 +1,2 @@
+Spring Boot Version: ${spring-boot.version}
+Spring Application Name: ${spring.application.name}
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/bootstrap.yml b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/bootstrap.yml
new file mode 100644
index 0000000..71249f0
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/bootstrap.yml
@@ -0,0 +1,29 @@
+# Tomcat
+server:
+ port: 9204
+
+# Spring
+spring:
+ application:
+ # 应用名称
+ name: muyu-net-working
+ profiles:
+ # 环境配置
+ active: dev
+ cloud:
+ nacos:
+ discovery:
+ # 服务注册地址
+ server-addr: 101.34.248.9:8848
+ config:
+ # 配置中心地址
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
+ # 配置文件格式
+ file-extension: yml
+ # 共享配置
+ shared-configs:
+ - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
+logging:
+ level:
+ com.muyu.net.working.mapper: DEBUG
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/logback.xml b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/logback.xml
new file mode 100644
index 0000000..aa340cd
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/logback.xml
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+ ${log.pattern}
+
+
+
+
+
+ ${log.path}/info.log
+
+
+
+ ${log.path}/info.%d{yyyy-MM-dd}.log
+
+ 60
+
+
+ ${log.pattern}
+
+
+
+ INFO
+
+ ACCEPT
+
+ DENY
+
+
+
+
+ ${log.path}/error.log
+
+
+
+ ${log.path}/error.%d{yyyy-MM-dd}.log
+
+ 60
+
+
+ ${log.pattern}
+
+
+
+ ERROR
+
+ ACCEPT
+
+ DENY
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/mapper/netWorking/EnterpriseMapper.xml b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/mapper/netWorking/EnterpriseMapper.xml
new file mode 100644
index 0000000..74678d7
--- /dev/null
+++ b/muyu-modules/muyu-net-working/muyu-net-working-server/src/main/resources/mapper/netWorking/EnterpriseMapper.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ select id, ebterprise_name, legal_person, business_lincense_number, estabiness_date, business_scope, address, contact_phone, email, status, registration_date, certification_id, authentication_date, service_level, open_server_id, add_server_id, create_by, create_time, update_by, update_time, remark from enterprise
+
+
diff --git a/muyu-modules/muyu-net-working/pom.xml b/muyu-modules/muyu-net-working/pom.xml
new file mode 100644
index 0000000..7fca981
--- /dev/null
+++ b/muyu-modules/muyu-net-working/pom.xml
@@ -0,0 +1,27 @@
+
+
+ 4.0.0
+
+ com.muyu
+ muyu-modules
+ 3.6.3
+
+
+ muyu-net-working
+ pom
+
+ muyu-net-working-common
+ muyu-net-working-server
+ muyu-net-working-client
+ muyu-net-working-remote
+
+
+
+ 17
+ 17
+ UTF-8
+
+
+
diff --git a/muyu-modules/muyu-system/src/main/resources/bootstrap.yml b/muyu-modules/muyu-system/src/main/resources/bootstrap.yml
index a66fd4c..e4c4b9d 100644
--- a/muyu-modules/muyu-system/src/main/resources/bootstrap.yml
+++ b/muyu-modules/muyu-system/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置
diff --git a/muyu-modules/pom.xml b/muyu-modules/pom.xml
index 846198c..30a6b4c 100644
--- a/muyu-modules/pom.xml
+++ b/muyu-modules/pom.xml
@@ -13,6 +13,7 @@
muyu-gen
muyu-job
muyu-file
+ muyu-net-working
muyu-modules
diff --git a/muyu-visual/muyu-monitor/src/main/resources/bootstrap.yml b/muyu-visual/muyu-monitor/src/main/resources/bootstrap.yml
index 1276c8e..787ab8d 100644
--- a/muyu-visual/muyu-monitor/src/main/resources/bootstrap.yml
+++ b/muyu-visual/muyu-monitor/src/main/resources/bootstrap.yml
@@ -14,10 +14,11 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
config:
# 配置中心地址
- server-addr: 127.0.0.1:8848
+ server-addr: 101.34.248.9:8848
+ namespace: b9d88e07-8713-4ccd-8e98-d7c19f40fe74
# 配置文件格式
file-extension: yml
# 共享配置