test:(企业入驻)

dev
zhang xu 2024-05-24 22:36:41 +08:00
parent 10341472e9
commit 1e4f78bc2b
54 changed files with 3389 additions and 22 deletions

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置

View File

@ -58,7 +58,7 @@ public class IpUtils {
ip = request.getRemoteAddr(); 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) { public static boolean internalIp (String ip) {
byte[] addr = textToNumericFormatV4(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(); return InetAddress.getLocalHost().getHostAddress();
} catch (UnknownHostException e) { } catch (UnknownHostException e) {
} }
return "127.0.0.1"; return "115.159.67.205";
} }
/** /**

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置
@ -28,12 +28,12 @@ spring:
eager: true eager: true
transport: transport:
# 控制台地址 # 控制台地址
dashboard: 127.0.0.1:8718 dashboard: 115.159.67.205:8718
# nacos配置持久化 # nacos配置持久化
datasource: datasource:
ds1: ds1:
nacos: nacos:
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
dataId: sentinel-muyu-gateway dataId: sentinel-muyu-gateway
groupId: DEFAULT_GROUP groupId: DEFAULT_GROUP
data-type: json data-type: json

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置

View File

@ -0,0 +1,99 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>muyu-networking</artifactId>
<version>3.6.3</version>
</parent>
<artifactId>muyu-networking-common</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-modules-system</artifactId>
<version>3.6.3</version>
</dependency>
<!-- PostgreSQL JDBC驱动 -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Swagger UI -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.fox.version}</version>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- MuYu Common DataSource -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-datasource</artifactId>
</dependency>
<!-- MuYu Common DataScope -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-datascope</artifactId>
</dependency>
<!-- MuYu Common Log -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-log</artifactId>
</dependency>
<!-- MuYu Common Swagger -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-swagger</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,33 @@
package com.muyu.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/25 9:03
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
public class AddService extends BaseEntity {
/**
*id
* */
private Long id;
/**
*
* */
private Integer addValue;
}

View File

@ -0,0 +1,38 @@
package com.muyu.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/25 9:05
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
public class Certification extends BaseEntity {
/**
*id
* **/
private Long id;
/**
*
* **/
private String auditor;
/**
*
* **/
private String stat;
/**
*
* **/
private String auditReason;
}

View File

@ -0,0 +1,203 @@
package com.muyu.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/25 8:51
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Enterprise extends BaseEntity {
/**
*qid
* **/
private Long id;
/**
*
* **/
private String enterpriseName;
/**
*
* **/
private String legalPerson;
/**
*
* **/
private String businessLicenseNumber;
/**
*
* **/
private Date establishmentDate;
/**
*
* **/
private String businessScope;
/**
*
* **/
private String address;
/**
*
* **/
private String contactPhone;
/**
*
* **/
private String email;
/**
*
* **/
private String status;
/**
*
* **/
private Date registrationDate;
/**
*
* **/
private String certification;
/**
*id
* **/
private Long openServiceId;
/**
*id
* **/
private Integer addServiceId;
/***
*
* */
private String openAdd;
public String getOpenAdd() {
return openAdd;
}
public void setOpenAdd(String openAdd) {
this.openAdd = openAdd;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getEnterpriseName() {
return enterpriseName;
}
public void setEnterpriseName(String enterpriseName) {
this.enterpriseName = enterpriseName;
}
public String getLegalPerson() {
return legalPerson;
}
public void setLegalPerson(String legalPerson) {
this.legalPerson = legalPerson;
}
public String getBusinessLicenseNumber() {
return businessLicenseNumber;
}
public void setBusinessLicenseNumber(String businessLicenseNumber) {
this.businessLicenseNumber = businessLicenseNumber;
}
public Date getEstablishmentDate() {
return establishmentDate;
}
public void setEstablishmentDate(Date establishmentData) {
this.establishmentDate = establishmentData;
}
public String getBusinessScope() {
return businessScope;
}
public void setBusinessScope(String businessScope) {
this.businessScope = businessScope;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getContactPhone() {
return contactPhone;
}
public void setContactPhone(String contactPhone) {
this.contactPhone = contactPhone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Date getRegistrationDate() {
return registrationDate;
}
public void setRegistrationDate(Date registrationDate) {
this.registrationDate = registrationDate;
}
public String getCertification() {
return certification;
}
public void setCertification(String certification) {
this.certification = certification;
}
public Long getOpenServiceId() {
return openServiceId;
}
public void setOpenServiceId(Long openServiceId) {
this.openServiceId = openServiceId;
}
public Integer getAddServiceId() {
return addServiceId;
}
public void setAddServiceId(Integer addServiceId) {
this.addServiceId = addServiceId;
}
}

View File

@ -0,0 +1,31 @@
package com.muyu.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/25 9:35
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
public class ModeOfPayment extends BaseEntity {
/***
* id
* */
private Long id;
/***
* /
* */
private String payment;
}

View File

@ -0,0 +1,34 @@
package com.muyu.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/26 9:19
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
@SuperBuilder
public class OpenServiceAdd extends BaseEntity {
/**
*
*id
* */
private Long id;
/**
*1 2
*
* */
private String ActivateTheService;
}

View File

@ -0,0 +1,39 @@
package com.muyu.domain;
import com.muyu.common.core.web.domain.BaseEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import javax.naming.ldap.PagedResultsControl;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/25 9:33
*/
@Data
@AllArgsConstructor
@NoArgsConstructor@SuperBuilder
public class PayOf extends BaseEntity {
/**
* id
* */
private Long id;
/**
* id
* */
private Long enterpriseId;
/**
* /id
* */
private Long modeOfPaymentId;
/**
*
* */
private Double price;
}

View File

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>muyu-networking</artifactId>
<version>3.6.3</version>
</parent>
<artifactId>muyu-networking-service</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-networking-common</artifactId>
<version>3.6.3</version>
</dependency>
<!-- skywalking 整合 logback -->
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-logback-1.x</artifactId>
<version>8.16.0</version>
</dependency>
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-trace</artifactId>
<version>8.16.0</version>
</dependency>
<dependency>
<groupId>net.logstash.logback</groupId>
<artifactId>logstash-logback-encoder</artifactId>
<version>6.6</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-modules-system</artifactId>
<version>3.6.3</version>
</dependency>
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Swagger UI -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.fox.version}</version>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- MuYu Common DataSource -->
<!-- MuYu Common DataScope -->
<!-- MuYu Common Log -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-log</artifactId>
</dependency>
<!-- MuYu Common Swagger -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-swagger</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-system</artifactId>
</dependency>
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,23 @@
package com.muyu.networking;
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;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/25 8:45
*/
@EnableCustomConfig
@EnableCustomSwagger2
@EnableMyFeignClients
@SpringBootApplication
public class NetworkingApplication {
public static void main(String[] args) {
SpringApplication.run(NetworkingApplication.class, args);
}
}

View File

@ -0,0 +1,107 @@
package com.muyu.networking.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.muyu.domain.AddService;
import com.muyu.networking.service.AddServiceService;
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.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.utils.poi.ExcelUtil;
import com.muyu.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-25
*/
@RestController
@RequestMapping("/addService")
public class AddServiceController extends BaseController
{
@Autowired
private AddServiceService addServiceService;
/**
*
*/
@RequiresPermissions("system:service:list")
@GetMapping("/list")
public Result<TableDataInfo<AddService>> list(AddService addService)
{
startPage();
List<AddService> list = addServiceService.selectAddServiceList(addService);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:service:export")
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, AddService addService)
{
List<AddService> list = addServiceService.selectAddServiceList(addService);
ExcelUtil<AddService> util = new ExcelUtil<AddService>(AddService.class);
util.exportExcel(response, list, "【请填写功能名称】数据");
}
/**
*
*/
@RequiresPermissions("system:service:query")
@GetMapping(value = "/{id}")
public Result getInfo(@PathVariable("id") Long id)
{
return success(addServiceService.selectAddServiceById(id));
}
/**
*
*/
@RequiresPermissions("system:service:add")
@Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
@PostMapping
public Result add(@RequestBody AddService addService)
{
return toAjax(addServiceService.insertAddService(addService));
}
/**
*
*/
@RequiresPermissions("system:service:edit")
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
@PutMapping
public Result edit(@RequestBody AddService addService)
{
return toAjax(addServiceService.updateAddService(addService));
}
/**
*
*/
@RequiresPermissions("system:service:remove")
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public Result remove(@PathVariable Long[] ids)
{
return toAjax(addServiceService.deleteAddServiceByIds(ids));
}
}

View File

@ -0,0 +1,106 @@
package com.muyu.networking.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.muyu.common.core.utils.poi.ExcelUtil;
import com.muyu.domain.Certification;
import com.muyu.networking.service.CertificationService;
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.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-25
*/
@RestController
@RequestMapping("/certification")
public class CertificationController extends BaseController
{
@Autowired
private CertificationService certificationService;
/**
*
*/
@RequiresPermissions("system:certification:list")
@GetMapping("/list")
public Result<TableDataInfo<Certification>> list(Certification certification)
{
startPage();
List<Certification> list = certificationService.selectCertificationList(certification);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:certification:export")
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, Certification certification)
{
List<Certification> list = certificationService.selectCertificationList(certification);
ExcelUtil<Certification> util = new ExcelUtil<Certification>(Certification.class);
util.exportExcel(response, list, "【请填写功能名称】数据");
}
/**
*
*/
@RequiresPermissions("system:certification:query")
@GetMapping(value = "/{id}")
public Result getInfo(@PathVariable("id") Long id)
{
return success(certificationService.selectCertificationById(id));
}
/**
*
*/
@RequiresPermissions("system:certification:add")
@Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
@PostMapping
public Result add(@RequestBody Certification certification)
{
return toAjax(certificationService.insertCertification(certification));
}
/**
*
*/
@RequiresPermissions("system:certification:edit")
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
@PutMapping
public Result edit(@RequestBody Certification certification)
{
return toAjax(certificationService.updateCertification(certification));
}
/**
*
*/
@RequiresPermissions("system:certification:remove")
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public Result remove(@PathVariable Long[] ids)
{
return toAjax(certificationService.deleteCertificationByIds(ids));
}
}

View File

@ -0,0 +1,107 @@
package com.muyu.networking.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.muyu.domain.Enterprise;
import com.muyu.networking.service.EnterpriseService;
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.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.utils.poi.ExcelUtil;
import com.muyu.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-25
*/
@RestController
@RequestMapping("/enterprise")
public class EnterpriseController extends BaseController
{
@Autowired
private EnterpriseService enterpriseService;
/**
*
*/
@RequiresPermissions("system:enterprise:list")
@GetMapping("/list")
public Result<TableDataInfo<Enterprise>> list(Enterprise enterprise)
{
startPage();
List<Enterprise> list = enterpriseService.selectEnterpriseList(enterprise);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:enterprise:export")
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, Enterprise enterprise)
{
List<Enterprise> list = enterpriseService.selectEnterpriseList(enterprise);
ExcelUtil<Enterprise> util = new ExcelUtil<Enterprise>(Enterprise.class);
util.exportExcel(response, list, "【请填写功能名称】数据");
}
/**
*
*/
@RequiresPermissions("system:enterprise:query")
@GetMapping(value = "/{id}")
public Result getInfo(@PathVariable("id") Long id)
{
return success(enterpriseService.selectEnterpriseById(id));
}
/**
*
*/
@RequiresPermissions("system:enterprise:add")
@Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
@PostMapping
public Result add(@RequestBody Enterprise enterprise)
{
return toAjax(enterpriseService.insertEnterprise(enterprise));
}
/**
*
*/
@RequiresPermissions("system:enterprise:edit")
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
@PutMapping
public Result edit(@RequestBody Enterprise enterprise)
{
return toAjax(enterpriseService.updateEnterprise(enterprise));
}
/**
*
*/
@RequiresPermissions("system:enterprise:remove")
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public Result remove(@PathVariable Long[] ids)
{
return toAjax(enterpriseService.deleteEnterpriseByIds(ids));
}
}

View File

@ -0,0 +1,110 @@
package com.muyu.networking.controller;
import javax.servlet.http.HttpServletResponse;
import com.muyu.common.core.utils.poi.ExcelUtil;
import com.muyu.domain.ModeOfPayment;
import com.muyu.networking.service.ModeOfPaymentIdService;
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.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.page.TableDataInfo;
import java.util.List;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-25
*/
@RestController
@RequestMapping("/id")
public class ModeOfPaymentIdController extends BaseController
{
@Autowired
private ModeOfPaymentIdService modeOfPaymentIdService;
/**
*
*/
@RequiresPermissions("system:id:list")
@GetMapping("/list")
public Result<TableDataInfo<ModeOfPayment>> list(ModeOfPayment modeOfPaymentId)
{
startPage();
List<ModeOfPayment> list = modeOfPaymentIdService.selectModeOfPaymentIdList(modeOfPaymentId);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:id:export")
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, ModeOfPayment modeOfPaymentId)
{
List<ModeOfPayment> list = modeOfPaymentIdService.selectModeOfPaymentIdList(modeOfPaymentId);
ExcelUtil<ModeOfPayment> util = new ExcelUtil<ModeOfPayment>(ModeOfPayment.class);
util.exportExcel(response, list, "【请填写功能名称】数据");
}
/**
*
*/
@RequiresPermissions("system:id:query")
@GetMapping(value = "/{id}")
public Result getInfo(@PathVariable("id") Long id)
{
return success(modeOfPaymentIdService.selectModeOfPaymentIdById(id));
}
/**
*
*/
@RequiresPermissions("system:id:add")
@Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
@PostMapping
public Result add(@RequestBody ModeOfPayment modeOfPaymentId)
{
return toAjax(modeOfPaymentIdService.insertModeOfPaymentId(modeOfPaymentId));
}
/**
*
*/
@RequiresPermissions("system:id:edit")
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
@PutMapping
public Result edit(@RequestBody ModeOfPayment modeOfPaymentId)
{
return toAjax(modeOfPaymentIdService.updateModeOfPaymentId(modeOfPaymentId));
}
/**
*
*/
@RequiresPermissions("system:id:remove")
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public Result remove(@PathVariable Long[] ids)
{
return toAjax(modeOfPaymentIdService.deleteModeOfPaymentIdByIds(ids));
}
}

View File

@ -0,0 +1,109 @@
package com.muyu.networking.controller;
import javax.servlet.http.HttpServletResponse;
import com.muyu.common.core.utils.poi.ExcelUtil;
import com.muyu.domain.OpenServiceAdd;
import com.muyu.networking.service.OpenServiceService;
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.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.web.page.TableDataInfo;
import java.util.List;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-25
*/
@RestController
@RequestMapping("/service")
public class OpenServiceController extends BaseController
{
@Autowired
private OpenServiceService openServiceService;
/**
*
*/
@RequiresPermissions("system:service:list")
@GetMapping("/list")
public Result<TableDataInfo<OpenServiceAdd>> list(OpenServiceAdd openService)
{
startPage();
List<OpenServiceAdd> list = openServiceService.selectOpenServiceList(openService);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:service:export")
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, OpenServiceAdd openService)
{
List<OpenServiceAdd> list = openServiceService.selectOpenServiceList(openService);
ExcelUtil<OpenServiceAdd> util = new ExcelUtil<OpenServiceAdd>(OpenServiceAdd.class);
util.exportExcel(response, list, "【请填写功能名称】数据");
}
/**
*
*/
@RequiresPermissions("system:service:query")
@GetMapping(value = "/{id}")
public Result getInfo(@PathVariable("id") Long id)
{
return success(openServiceService.selectOpenServiceById(id));
}
/**
*
*/
@RequiresPermissions("system:service:add")
@Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
@PostMapping
public Result add(@RequestBody OpenServiceAdd openService)
{
return toAjax(openServiceService.insertOpenService(openService));
}
/**
*
*/
@RequiresPermissions("system:service:edit")
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
@PutMapping
public Result edit(@RequestBody OpenServiceAdd openService)
{
return toAjax(openServiceService.updateOpenService(openService));
}
/**
*
*/
@RequiresPermissions("system:service:remove")
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public Result remove(@PathVariable Long[] ids)
{
return toAjax(openServiceService.deleteOpenServiceByIds(ids));
}
}

View File

@ -0,0 +1,108 @@
package com.muyu.networking.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import com.muyu.domain.PayOf;
import com.muyu.networking.service.PayOfService;
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.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType;
import com.muyu.common.security.annotation.RequiresPermissions;
import com.muyu.common.core.web.controller.BaseController;
import com.muyu.common.core.domain.Result;
import com.muyu.common.core.utils.poi.ExcelUtil;
import com.muyu.common.core.web.page.TableDataInfo;
/**
* Controller
*
* @author ruoyi
* @date 2024-05-25
*/
@RestController
@RequestMapping("/for")
public class PayForController extends BaseController
{
@Autowired
private PayOfService payForService;
/**
*
*/
@RequiresPermissions("system:for:list")
@GetMapping("/list")
public Result<TableDataInfo<PayOf>> list(PayOf payFor)
{
startPage();
List<PayOf> list = payForService.selectPayOfList(payFor);
return getDataTable(list);
}
/**
*
*/
@RequiresPermissions("system:for:export")
@Log(title = "【请填写功能名称】", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, PayOf payFor)
{
List<PayOf> list = payForService.selectPayOfList(payFor);
ExcelUtil<PayOf> util = new ExcelUtil<PayOf>(PayOf.class);
util.exportExcel(response, list, "【请填写功能名称】数据");
}
/**
*
*/
@RequiresPermissions("system:for:query")
@GetMapping(value = "/{id}")
public Result getInfo(@PathVariable("id") Long id)
{
return success(payForService.selectPayOfById(id));
}
/**
*
*/
@RequiresPermissions("system:for:add")
@Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
@PostMapping
public Result add(@RequestBody PayOf payFor)
{
return toAjax(payForService.insertPayOf(payFor));
}
/**
*
*/
@RequiresPermissions("system:for:edit")
@Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
@PutMapping
public Result edit(@RequestBody PayOf payFor)
{
return toAjax(payForService.updatePayOf(payFor));
}
/**
*
*/
@RequiresPermissions("system:for:remove")
@Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public Result remove(@PathVariable Long[] ids)
{
return toAjax(payForService.deletePayOfByIds(ids));
}
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.mapper;
import com.muyu.domain.AddService;
import java.util.List;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-25
*/
public interface AddServiceMapper
{
/**
*
*
* @param id
* @return
*/
public AddService selectAddServiceById(Long id);
/**
*
*
* @param addService
* @return
*/
public List<AddService> selectAddServiceList(AddService addService);
/**
*
*
* @param addService
* @return
*/
public int insertAddService(AddService addService);
/**
*
*
* @param addService
* @return
*/
public int updateAddService(AddService addService);
/**
*
*
* @param id
* @return
*/
public int deleteAddServiceById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteAddServiceByIds(Long[] ids);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.mapper;
import com.muyu.domain.Certification;
import java.util.List;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-25
*/
public interface CertificationMapper
{
/**
*
*
* @param id
* @return
*/
public Certification selectCertificationById(Long id);
/**
*
*
* @param certification
* @return
*/
public List<Certification> selectCertificationList(Certification certification);
/**
*
*
* @param certification
* @return
*/
public int insertCertification(Certification certification);
/**
*
*
* @param certification
* @return
*/
public int updateCertification(Certification certification);
/**
*
*
* @param id
* @return
*/
public int deleteCertificationById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteCertificationByIds(Long[] ids);
}

View File

@ -0,0 +1,62 @@
package com.muyu.networking.mapper;
import com.muyu.domain.Enterprise;
import java.util.List;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-25
*/
public interface EnterpriseMapper
{
/**
*
*
* @param id
* @return
*/
public Enterprise selectEnterpriseById(Long id);
/**
*
*
* @param enterprise
* @return
*/
public List<Enterprise> selectEnterpriseList(Enterprise enterprise);
/**
*
*
* @param enterprise
* @return
*/
public int insertEnterprise(Enterprise enterprise);
/**
*
*
* @param enterprise
* @return
*/
public int updateEnterprise(Enterprise enterprise);
/**
*
*
* @param id
* @return
*/
public int deleteEnterpriseById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteEnterpriseByIds(Long[] ids);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.mapper;
import com.muyu.domain.ModeOfPayment;
import java.util.List;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-25
*/
public interface ModeOfPaymentIdMapper
{
/**
*
*
* @param id
* @return
*/
public ModeOfPayment selectModeOfPaymentIdById(Long id);
/**
*
*
* @param modeOfPaymentId
* @return
*/
public List<ModeOfPayment> selectModeOfPaymentIdList(ModeOfPayment modeOfPaymentId);
/**
*
*
* @param modeOfPaymentId
* @return
*/
public int insertModeOfPaymentId(ModeOfPayment modeOfPaymentId);
/**
*
*
* @param modeOfPaymentId
* @return
*/
public int updateModeOfPaymentId(ModeOfPayment modeOfPaymentId);
/**
*
*
* @param id
* @return
*/
public int deleteModeOfPaymentIdById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteModeOfPaymentIdByIds(Long[] ids);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.mapper;
import java.util.List;
import com.muyu.domain.OpenServiceAdd;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-25
*/
public interface OpenServiceMapper
{
/**
*
*
* @param id
* @return
*/
public OpenServiceAdd selectOpenServiceById(Long id);
/**
*
*
* @param openService
* @return
*/
public List<OpenServiceAdd> selectOpenServiceList(OpenServiceAdd openService);
/**
*
*
* @param openService
* @return
*/
public int insertOpenService(OpenServiceAdd openService);
/**
*
*
* @param openService
* @return
*/
public int updateOpenService(OpenServiceAdd openService);
/**
*
*
* @param id
* @return
*/
public int deleteOpenServiceById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deleteOpenServiceByIds(Long[] ids);
}

View File

@ -0,0 +1,61 @@
package com.muyu.networking.mapper;
import com.muyu.domain.PayOf;
import java.util.List;
/**
* Mapper
*
* @author ruoyi
* @date 2024-05-25
*/
public interface PayOfMapper
{
/**
*
*
* @param id
* @return
*/
public PayOf selectPayOfById(Long id);
/**
*
*
* @param PayOf
* @return
*/
public List<PayOf> selectPayOfList(PayOf PayOf);
/**
*
*
* @param PayOf
* @return
*/
public int insertPayOf(PayOf PayOf);
/**
*
*
* @param PayOf
* @return
*/
public int updatePayOf(PayOf PayOf);
/**
*
*
* @param id
* @return
*/
public int deletePayOfById(Long id);
/**
*
*
* @param ids
* @return
*/
public int deletePayOfByIds(Long[] ids);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.service;
import com.muyu.domain.AddService;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
public interface AddServiceService
{
/**
*
*
* @param id
* @return
*/
public AddService selectAddServiceById(Long id);
/**
*
*
* @param addService
* @return
*/
public List<AddService> selectAddServiceList(AddService addService);
/**
*
*
* @param addService
* @return
*/
public int insertAddService(AddService addService);
/**
*
*
* @param addService
* @return
*/
public int updateAddService(AddService addService);
/**
*
*
* @param ids
* @return
*/
public int deleteAddServiceByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteAddServiceById(Long id);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.service;
import com.muyu.domain.Certification;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
public interface CertificationService
{
/**
*
*
* @param id
* @return
*/
public Certification selectCertificationById(Long id);
/**
*
*
* @param certification
* @return
*/
public List<Certification> selectCertificationList(Certification certification);
/**
*
*
* @param certification
* @return
*/
public int insertCertification(Certification certification);
/**
*
*
* @param certification
* @return
*/
public int updateCertification(Certification certification);
/**
*
*
* @param ids
* @return
*/
public int deleteCertificationByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteCertificationById(Long id);
}

View File

@ -0,0 +1,61 @@
package com.muyu.networking.service;
import com.muyu.domain.Enterprise;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
public interface EnterpriseService
{
/**
*
*
* @param id
* @return
*/
public Enterprise selectEnterpriseById(Long id);
/**
*
*
* @param enterprise
* @return
*/
public List<Enterprise> selectEnterpriseList(Enterprise enterprise);
/**
*
*
* @param enterprise
* @return
*/
public int insertEnterprise(Enterprise enterprise);
/**
*
*
* @param enterprise
* @return
*/
public int updateEnterprise(Enterprise enterprise);
/**
*
*
* @param ids
* @return
*/
public int deleteEnterpriseByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteEnterpriseById(Long id);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.service;
import com.muyu.domain.ModeOfPayment;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
public interface ModeOfPaymentIdService
{
/**
*
*
* @param id
* @return
*/
public ModeOfPayment selectModeOfPaymentIdById(Long id);
/**
*
*
* @param modeOfPaymentId
* @return
*/
public List<ModeOfPayment> selectModeOfPaymentIdList(ModeOfPayment modeOfPaymentId);
/**
*
*
* @param modeOfPaymentId
* @return
*/
public int insertModeOfPaymentId(ModeOfPayment modeOfPaymentId);
/**
*
*
* @param modeOfPaymentId
* @return
*/
public int updateModeOfPaymentId(ModeOfPayment modeOfPaymentId);
/**
*
*
* @param ids
* @return
*/
public int deleteModeOfPaymentIdByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteModeOfPaymentIdById(Long id);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.service;
import com.muyu.domain.OpenServiceAdd;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
public interface OpenServiceService
{
/**
*
*
* @param id
* @return
*/
public OpenServiceAdd selectOpenServiceById(Long id);
/**
*
*
* @param openService
* @return
*/
public List<OpenServiceAdd> selectOpenServiceList(OpenServiceAdd openService);
/**
*
*
* @param openService
* @return
*/
public int insertOpenService(OpenServiceAdd openService);
/**
*
*
* @param openService
* @return
*/
public int updateOpenService(OpenServiceAdd openService);
/**
*
*
* @param ids
* @return
*/
public int deleteOpenServiceByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deleteOpenServiceById(Long id);
}

View File

@ -0,0 +1,63 @@
package com.muyu.networking.service;
import com.muyu.domain.PayOf;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
public interface PayOfService
{
/**
*
*
* @param id
* @return
*/
public PayOf selectPayOfById(Long id);
/**
*
*
* @param PayOf
* @return
*/
public List<PayOf> selectPayOfList(PayOf PayOf);
/**
*
*
* @param PayOf
* @return
*/
public int insertPayOf(PayOf PayOf);
/**
*
*
* @param PayOf
* @return
*/
public int updatePayOf(PayOf PayOf);
/**
*
*
* @param ids
* @return
*/
public int deletePayOfByIds(Long[] ids);
/**
*
*
* @param id
* @return
*/
public int deletePayOfById(Long id);
}

View File

@ -0,0 +1,97 @@
package com.muyu.networking.service.impl;
import com.muyu.common.core.utils.DateUtils;
import com.muyu.domain.AddService;
import com.muyu.networking.mapper.AddServiceMapper;
import com.muyu.networking.service.AddServiceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
@Service
public class AddServiceServiceImpl implements AddServiceService
{
@Autowired
private AddServiceMapper addServiceMapper;
/**
*
*
* @param id
* @return
*/
@Override
public AddService selectAddServiceById(Long id)
{
return addServiceMapper.selectAddServiceById(id);
}
/**
*
*
* @param addService
* @return
*/
@Override
public List<AddService> selectAddServiceList(AddService addService)
{
return addServiceMapper.selectAddServiceList(addService);
}
/**
*
*
* @param addService
* @return
*/
@Override
public int insertAddService(AddService addService)
{
addService.setCreateTime(DateUtils.getNowDate());
return addServiceMapper.insertAddService(addService);
}
/**
*
*
* @param addService
* @return
*/
@Override
public int updateAddService(AddService addService)
{
addService.setUpdateTime(DateUtils.getNowDate());
return addServiceMapper.updateAddService(addService);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteAddServiceByIds(Long[] ids)
{
return addServiceMapper.deleteAddServiceByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteAddServiceById(Long id)
{
return addServiceMapper.deleteAddServiceById(id);
}
}

View File

@ -0,0 +1,99 @@
package com.muyu.networking.service.impl;
import com.muyu.common.core.utils.DateUtils;
import com.muyu.domain.Certification;
import com.muyu.networking.mapper.CertificationMapper;
import com.muyu.networking.service.CertificationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
@Service
public class CertificationServiceImpl implements CertificationService
{
@Autowired
private CertificationMapper certificationMapper;
/**
*
*
* @param id
* @return
*/
@Override
public Certification selectCertificationById(Long id)
{
return certificationMapper.selectCertificationById(id);
}
/**
*
*
* @param certification
* @return
*/
@Override
public List<Certification> selectCertificationList(Certification certification)
{
return certificationMapper.selectCertificationList(certification);
}
/**
*
*
* @param certification
* @return
*/
@Override
public int insertCertification(Certification certification)
{
certification.setCreateTime(DateUtils.getNowDate());
return certificationMapper.insertCertification(certification);
}
/**
*
*
* @param certification
* @return
*/
@Override
public int updateCertification(Certification certification)
{
certification.setUpdateTime(DateUtils.getNowDate());
return certificationMapper.updateCertification(certification);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteCertificationByIds(Long[] ids)
{
return certificationMapper.deleteCertificationByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteCertificationById(Long id)
{
return certificationMapper.deleteCertificationById(id);
}
}

View File

@ -0,0 +1,103 @@
package com.muyu.networking.service.impl;
import com.muyu.common.core.utils.DateUtils;
import com.muyu.common.security.utils.SecurityUtils;
import com.muyu.domain.Enterprise;
import com.muyu.networking.mapper.EnterpriseMapper;
import com.muyu.networking.service.EnterpriseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.UUID;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
@Service
public class EnterpriseServiceImpl implements EnterpriseService
{
@Autowired
private EnterpriseMapper enterpriseMapper;
/**
*
*
* @param id
* @return
*/
@Override
public Enterprise selectEnterpriseById(Long id)
{
return enterpriseMapper.selectEnterpriseById(id);
}
/**
*
*
* @param enterprise
* @return
*/
@Override
public List<Enterprise> selectEnterpriseList(Enterprise enterprise)
{
return enterpriseMapper.selectEnterpriseList(enterprise);
}
/**
*
*
* @param enterprise
* @return
*/
@Override
public int insertEnterprise(Enterprise enterprise)
{
enterprise.setCreateBy(SecurityUtils.getUsername());
enterprise.setCreateTime(DateUtils.getNowDate());
enterprise.setBusinessLicenseNumber(UUID.randomUUID().toString());
return enterpriseMapper.insertEnterprise(enterprise);
}
/**
*
*
* @param enterprise
* @return
*/
@Override
public int updateEnterprise(Enterprise enterprise)
{
enterprise.setUpdateTime(DateUtils.getNowDate());
return enterpriseMapper.updateEnterprise(enterprise);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteEnterpriseByIds(Long[] ids)
{
return enterpriseMapper.deleteEnterpriseByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteEnterpriseById(Long id)
{
return enterpriseMapper.deleteEnterpriseById(id);
}
}

View File

@ -0,0 +1,99 @@
package com.muyu.networking.service.impl;
import com.muyu.common.core.utils.DateUtils;
import com.muyu.domain.ModeOfPayment;
import com.muyu.networking.mapper.ModeOfPaymentIdMapper;
import com.muyu.networking.service.ModeOfPaymentIdService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
@Service
public class ModeOfPaymentIdServiceImpl implements ModeOfPaymentIdService
{
@Autowired
private ModeOfPaymentIdMapper modeOfPaymentIdMapper;
/**
*
*
* @param id
* @return
*/
@Override
public ModeOfPayment selectModeOfPaymentIdById(Long id)
{
return modeOfPaymentIdMapper.selectModeOfPaymentIdById(id);
}
/**
*
*
* @param modeOfPaymentId
* @return
*/
@Override
public List<ModeOfPayment> selectModeOfPaymentIdList(ModeOfPayment modeOfPaymentId)
{
return modeOfPaymentIdMapper.selectModeOfPaymentIdList(modeOfPaymentId);
}
/**
*
*
* @param modeOfPaymentId
* @return
*/
@Override
public int insertModeOfPaymentId(ModeOfPayment modeOfPaymentId)
{
modeOfPaymentId.setCreateTime(DateUtils.getNowDate());
return modeOfPaymentIdMapper.insertModeOfPaymentId(modeOfPaymentId);
}
/**
*
*
* @param modeOfPaymentId
* @return
*/
@Override
public int updateModeOfPaymentId(ModeOfPayment modeOfPaymentId)
{
modeOfPaymentId.setUpdateTime(DateUtils.getNowDate());
return modeOfPaymentIdMapper.updateModeOfPaymentId(modeOfPaymentId);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteModeOfPaymentIdByIds(Long[] ids)
{
return modeOfPaymentIdMapper.deleteModeOfPaymentIdByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteModeOfPaymentIdById(Long id)
{
return modeOfPaymentIdMapper.deleteModeOfPaymentIdById(id);
}
}

View File

@ -0,0 +1,97 @@
package com.muyu.networking.service.impl;
import java.util.List;
import com.muyu.common.core.utils.DateUtils;
import com.muyu.domain.OpenServiceAdd;
import com.muyu.networking.mapper.OpenServiceMapper;
import com.muyu.networking.service.OpenServiceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
@Service
public class OpenServiceServiceImpl implements OpenServiceService
{
@Autowired
private OpenServiceMapper openServiceMapper;
/**
*
*
* @param id
* @return
*/
@Override
public OpenServiceAdd selectOpenServiceById(Long id)
{
return openServiceMapper.selectOpenServiceById(id);
}
/**
*
*
* @param openService
* @return
*/
@Override
public List<OpenServiceAdd> selectOpenServiceList(OpenServiceAdd openService)
{
return openServiceMapper.selectOpenServiceList(openService);
}
/**
*
*
* @param openService
* @return
*/
@Override
public int insertOpenService(OpenServiceAdd openService)
{
openService.setCreateTime(DateUtils.getNowDate());
return openServiceMapper.insertOpenService(openService);
}
/**
*
*
* @param openService
* @return
*/
@Override
public int updateOpenService(OpenServiceAdd openService)
{
openService.setUpdateTime(DateUtils.getNowDate());
return openServiceMapper.updateOpenService(openService);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deleteOpenServiceByIds(Long[] ids)
{
return openServiceMapper.deleteOpenServiceByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deleteOpenServiceById(Long id)
{
return openServiceMapper.deleteOpenServiceById(id);
}
}

View File

@ -0,0 +1,97 @@
package com.muyu.networking.service.impl;
import java.util.List;
import com.muyu.common.core.utils.DateUtils;
import com.muyu.domain.PayOf;
import com.muyu.networking.mapper.PayOfMapper;
import com.muyu.networking.service.PayOfService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Service
*
* @author ruoyi
* @date 2024-05-25
*/
@Service
public class PayOfServiceImpl implements PayOfService
{
@Autowired
private PayOfMapper payOfMapper;
/**
*
*
* @param id
* @return
*/
@Override
public PayOf selectPayOfById(Long id)
{
return payOfMapper.selectPayOfById(id);
}
/**
*
*
* @param PayOf
* @return
*/
@Override
public List<PayOf> selectPayOfList(PayOf PayOf)
{
return payOfMapper.selectPayOfList(PayOf);
}
/**
*
*
* @param PayOf
* @return
*/
@Override
public int insertPayOf(PayOf PayOf)
{
PayOf.setCreateTime(DateUtils.getNowDate());
return payOfMapper.insertPayOf(PayOf);
}
/**
*
*
* @param PayOf
* @return
*/
@Override
public int updatePayOf(PayOf PayOf)
{
PayOf.setUpdateTime(DateUtils.getNowDate());
return payOfMapper.updatePayOf(PayOf);
}
/**
*
*
* @param ids
* @return
*/
@Override
public int deletePayOfByIds(Long[] ids)
{
return payOfMapper.deletePayOfByIds(ids);
}
/**
*
*
* @param id
* @return
*/
@Override
public int deletePayOfById(Long id)
{
return payOfMapper.deletePayOfById(id);
}
}

View File

@ -0,0 +1,2 @@
Spring Boot Version: ${spring-boot.version}
Spring Application Name: ${spring.application.name}

View File

@ -0,0 +1,30 @@
# Tomcat
server:
port: 9204
# Spring
spring:
application:
# 应用名称
name: muyu-networking
profiles:
# 环境配置
active: dev
cloud:
nacos:
discovery:
# 服务注册地址
server-addr: 115.159.67.205:8848
config:
# 配置中心地址
server-addr: 115.159.67.205:8848
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
logging:
config: classpath:logback-spring.xml
level:
com.muyu.networking.mapper: DEBUG

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 -->
<property name="log.path" value="logs/muyu-networking"/>
<!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"/>
<!-- 控制台输出 -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
</appender>
<!-- 系统日志输出 -->
<appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/info.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>INFO</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/error.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>ERROR</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 系统模块日志级别控制 -->
<logger name="com.muyu" level="info"/>
<!-- Spring日志级别控制 -->
<logger name="org.springframework" level="warn"/>
<root level="info">
<appender-ref ref="console"/>
</root>
<!--系统操作日志-->
<root level="info">
<appender-ref ref="file_info"/>
<appender-ref ref="file_error"/>
</root>
</configuration>

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.networking.mapper.AddServiceMapper">
<resultMap type="com.muyu.domain.AddService" id="AddServiceResult">
<result property="id" column="id" />
<result property="addValue" column="add_value" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
</resultMap>
<sql id="selectAddServiceVo">
select id, add_value, remark, create_by, create_time, update_time, update_by from add_service
</sql>
<select id="selectAddServiceList" parameterType="com.muyu.domain.AddService" resultMap="AddServiceResult">
<include refid="selectAddServiceVo"/>
<where>
<if test="addValue != null and addValue != ''"> and add_value = #{addValue}</if>
</where>
</select>
<select id="selectAddServiceById" parameterType="Long" resultMap="AddServiceResult">
<include refid="selectAddServiceVo"/>
where id = #{id}
</select>
<insert id="insertAddService" parameterType="com.muyu.domain.AddService" useGeneratedKeys="true" keyProperty="id">
insert into add_service
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="addValue != null">add_value,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
<if test="updateBy != null">update_by,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="addValue != null">#{addValue},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="updateBy != null">#{updateBy},</if>
</trim>
</insert>
<update id="updateAddService" parameterType="com.muyu.domain.AddService">
update add_service
<trim prefix="SET" suffixOverrides=",">
<if test="addValue != null">add_value = #{addValue},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteAddServiceById" parameterType="Long">
delete from add_service where id = #{id}
</delete>
<delete id="deleteAddServiceByIds" parameterType="String">
delete from add_service where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.networking.mapper.CertificationMapper">
<resultMap type="com.muyu.domain.Certification" id="CertificationResult">
<result property="id" column="id" />
<result property="auditor" column="auditor" />
<result property="stat" column="stat" />
<result property="auditReason" column="audit_reason" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
</resultMap>
<sql id="selectCertificationVo">
select id, auditor, stat, audit_reason, remark, create_by, create_time, update_by, update_time from certification
</sql>
<select id="selectCertificationList" parameterType="com.muyu.domain.Certification" resultMap="CertificationResult">
<include refid="selectCertificationVo"/>
<where>
<if test="auditor != null and auditor != ''"> and auditor = #{auditor}</if>
<if test="stat != null and stat != ''"> and stat = #{stat}</if>
<if test="auditReason != null and auditReason != ''"> and audit_reason = #{auditReason}</if>
</where>
</select>
<select id="selectCertificationById" parameterType="Long" resultMap="CertificationResult">
<include refid="selectCertificationVo"/>
where id = #{id}
</select>
<insert id="insertCertification" parameterType="com.muyu.domain.Certification" useGeneratedKeys="true" keyProperty="id">
insert into certification
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="auditor != null">auditor,</if>
<if test="stat != null">stat,</if>
<if test="auditReason != null">audit_reason,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="auditor != null">#{auditor},</if>
<if test="stat != null">#{stat},</if>
<if test="auditReason != null">#{auditReason},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<update id="updateCertification" parameterType="com.muyu.domain.Certification">
update certification
<trim prefix="SET" suffixOverrides=",">
<if test="auditor != null">auditor = #{auditor},</if>
<if test="stat != null">stat = #{stat},</if>
<if test="auditReason != null">audit_reason = #{auditReason},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteCertificationById" parameterType="Long">
delete from certification where id = #{id}
</delete>
<delete id="deleteCertificationByIds" parameterType="String">
delete from certification where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.networking.mapper.EnterpriseMapper">
<resultMap type="com.muyu.domain.Enterprise" id="EnterpriseResult">
<result property="id" column="id" />
<result property="enterpriseName" column="enterprise_name" />
<result property="legalPerson" column="legal_person" />
<result property="businessLicenseNumber" column="business_license_number" />
<result property="openAdd" column="open_add" />
<result property="establishmentDate" column="establishment_date" />
<result property="businessScope" column="business_scope" />
<result property="address" column="address" />
<result property="contactPhone" column="contact_phone" />
<result property="email" column="email" />
<result property="status" column="status" />
<result property="registrationDate" column="registration_date" />
<result property="certification" column="certification" />
<result property="openServiceId" column="open_service_id" />
<result property="addServiceId" column="add_service_id" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
</resultMap>
<sql id="selectEnterpriseVo">
select id, enterprise_name,open_add, legal_person, business_license_number, establishment_date, business_scope, address, contact_phone, email, status, registration_date, certification, open_service_id, add_service_id, remark, create_by, create_time, update_time, update_by from enterprise
</sql>
<select id="selectEnterpriseList" parameterType="com.muyu.domain.Enterprise" resultMap="EnterpriseResult">
<include refid="selectEnterpriseVo"/>
<where>
<if test="enterpriseName != null and enterpriseName != ''"> and enterprise_name like concat('%', #{enterpriseName}, '%')</if>
<if test="legalPerson != null and legalPerson != ''"> and legal_person = #{legalPerson}</if>
<if test="businessLicenseNumber != null and businessLicenseNumber != ''"> and business_license_number = #{businessLicenseNumber}</if>
<if test="establishmentDate != null "> and establishment_date = #{establishmentDate}</if>
<if test="businessScope != null and businessScope != ''"> and business_scope = #{businessScope}</if>
<if test="address != null and address != ''"> and address = #{address}</if>
<if test="contactPhone != null and contactPhone != ''"> and contact_phone = #{contactPhone}</if>
<if test="email != null and email != ''"> and email = #{email}</if>
<if test="status != null and status != ''"> and status = #{status}</if>
<if test="registrationDate != null "> and registration_date = #{registrationDate}</if>
<if test="certification != null "> and certification = #{certification}</if>
<if test="openServiceId != null "> and open_service_id = #{openServiceId}</if>
<if test="addServiceId != null "> and add_service_id = #{addServiceId}</if>
<if test="openAdd != null "> and open_add = #{openAdd}</if>
</where>
</select>
<select id="selectEnterpriseById" parameterType="Long" resultMap="EnterpriseResult">
<include refid="selectEnterpriseVo"/>
where id = #{id}
</select>
<insert id="insertEnterprise" parameterType="com.muyu.domain.Enterprise" useGeneratedKeys="true" keyProperty="id">
insert into enterprise
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="enterpriseName != null">enterprise_name,</if>
<if test="legalPerson != null">legal_person,</if>
<if test="businessLicenseNumber != null">business_license_number,</if>
<if test="establishmentDate != null">establishment_date,</if>
<if test="businessScope != null">business_scope,</if>
<if test="address != null">address,</if>
<if test="contactPhone != null">contact_phone,</if>
<if test="email != null">email,</if>
<if test="status != null">status,</if>
<if test="registrationDate != null">registration_date,</if>
<if test="certification != null">certification,</if>
<if test="openServiceId != null">open_service_id,</if>
<if test="addServiceId != null">add_service_id,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="openAdd != null">open_add,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="enterpriseName != null">#{enterpriseName},</if>
<if test="legalPerson != null">#{legalPerson},</if>
<if test="businessLicenseNumber != null">#{businessLicenseNumber},</if>
<if test="establishmentDate != null">#{establishmentDate},</if>
<if test="businessScope != null">#{businessScope},</if>
<if test="address != null">#{address},</if>
<if test="contactPhone != null">#{contactPhone},</if>
<if test="email != null">#{email},</if>
<if test="status != null">#{status},</if>
<if test="registrationDate != null">#{registrationDate},</if>
<if test="certification != null">#{certification},</if>
<if test="openServiceId != null">#{openServiceId},</if>
<if test="addServiceId != null">#{addServiceId},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="openAdd != null">#{openAdd},</if>
</trim>
</insert>
<update id="updateEnterprise" parameterType="com.muyu.domain.Enterprise">
update enterprise
<trim prefix="SET" suffixOverrides=",">
<if test="enterpriseName != null">enterprise_name = #{enterpriseName},</if>
<if test="legalPerson != null">legal_person = #{legalPerson},</if>
<if test="businessLicenseNumber != null">business_license_number = #{businessLicenseNumber},</if>
<if test="establishmentDate != null">establishment_date = #{establishmentDate},</if>
<if test="businessScope != null">business_scope = #{businessScope},</if>
<if test="address != null">address = #{address},</if>
<if test="contactPhone != null">contact_phone = #{contactPhone},</if>
<if test="email != null">email = #{email},</if>
<if test="status != null">status = #{status},</if>
<if test="registrationDate != null">registration_date = #{registrationDate},</if>
<if test="certification != null">certification = #{certification},</if>
<if test="openServiceId != null">open_service_id = #{openServiceId},</if>
<if test="addServiceId != null">add_service_id = #{addServiceId},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="openAdd != null">open_add = #{openAdd},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteEnterpriseById" parameterType="Long">
delete from enterprise where id = #{id}
</delete>
<delete id="deleteEnterpriseByIds" parameterType="String">
delete from enterprise where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.networking.mapper.ModeOfPaymentIdMapper">
<resultMap type="com.muyu.domain.ModeOfPayment" id="ModeOfPaymentIdResult">
<result property="id" column="id" />
<result property="payment" column="payment" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
</resultMap>
<sql id="selectModeOfPaymentIdVo">
select id, payment, remark, create_by, create_time, update_time, update_by from mode_of_payment_id
</sql>
<select id="selectModeOfPaymentIdList" parameterType="com.muyu.domain.ModeOfPayment" resultMap="ModeOfPaymentIdResult">
<include refid="selectModeOfPaymentIdVo"/>
<where>
<if test="payment != null and payment != ''"> and payment = #{payment}</if>
</where>
</select>
<select id="selectModeOfPaymentIdById" parameterType="Long" resultMap="ModeOfPaymentIdResult">
<include refid="selectModeOfPaymentIdVo"/>
where id = #{id}
</select>
<insert id="insertModeOfPaymentId" parameterType="com.muyu.domain.ModeOfPayment" useGeneratedKeys="true" keyProperty="id">
insert into mode_of_payment_id
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="payment != null">payment,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
<if test="updateBy != null">update_by,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="payment != null">#{payment},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="updateBy != null">#{updateBy},</if>
</trim>
</insert>
<update id="updateModeOfPaymentId" parameterType="com.muyu.domain.ModeOfPayment">
update mode_of_payment_id
<trim prefix="SET" suffixOverrides=",">
<if test="payment != null">payment = #{payment},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteModeOfPaymentIdById" parameterType="Long">
delete from mode_of_payment_id where id = #{id}
</delete>
<delete id="deleteModeOfPaymentIdByIds" parameterType="String">
delete from mode_of_payment_id where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.networking.mapper.OpenServiceMapper">
<resultMap type="com.muyu.domain.OpenServiceAdd" id="OpenServiceResult">
<result property="id" column="id" />
<result property="activateTheService" column="activate_the_service" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
</resultMap>
<sql id="selectOpenServiceVo">
select id, activate_the_service, remark, create_by, create_time, update_time, update_by from open_service
</sql>
<select id="selectOpenServiceList" parameterType="com.muyu.domain.OpenServiceAdd" resultMap="OpenServiceResult">
<include refid="selectOpenServiceVo"/>
<where>
<if test="activateTheService != null and activateTheService != ''"> and activate_the_service = #{activateTheService}</if>
</where>
</select>
<select id="selectOpenServiceById" parameterType="Long" resultMap="OpenServiceResult">
<include refid="selectOpenServiceVo"/>
where id = #{id}
</select>
<insert id="insertOpenService" parameterType="com.muyu.domain.OpenServiceAdd" useGeneratedKeys="true" keyProperty="id">
insert into open_service
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="activateTheService != null">activate_the_service,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
<if test="updateBy != null">update_by,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="activateTheService != null">#{activateTheService},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="updateBy != null">#{updateBy},</if>
</trim>
</insert>
<update id="updateOpenService" parameterType="com.muyu.domain.OpenServiceAdd">
update open_service
<trim prefix="SET" suffixOverrides=",">
<if test="activateTheService != null">activate_the_service = #{activateTheService},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteOpenServiceById" parameterType="Long">
delete from open_service where id = #{id}
</delete>
<delete id="deleteOpenServiceByIds" parameterType="String">
delete from open_service where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.muyu.networking.mapper.PayOfMapper">
<resultMap type="com.muyu.domain.PayOf" id="PayForResult">
<result property="id" column="id" />
<result property="enterpriseId" column="enterprise_id" />
<result property="modeOfPaymentId" column="mode_of_payment_id" />
<result property="price" column="price" />
<result property="remark" column="remark" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateTime" column="update_time" />
<result property="updateBy" column="update_by" />
</resultMap>
<sql id="selectPayForVo">
select id, enterprise_id, mode_of_payment_id, price, remark, create_by, create_time, update_time, update_by from pay_for
</sql>
<select id="selectPayOfList" parameterType="com.muyu.domain.PayOf" resultMap="PayForResult">
<include refid="selectPayForVo"/>
<where>
<if test="enterpriseId != null "> and enterprise_id = #{enterpriseId}</if>
<if test="modeOfPaymentId != null "> and mode_of_payment_id = #{modeOfPaymentId}</if>
<if test="price != null "> and price = #{price}</if>
</where>
</select>
<select id="selectPayOfById" parameterType="Long" resultMap="PayForResult">
<include refid="selectPayForVo"/>
where id = #{id}
</select>
<insert id="insertPayOf" parameterType="com.muyu.domain.PayOf" useGeneratedKeys="true" keyProperty="id">
insert into pay_for
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="enterpriseId != null">enterprise_id,</if>
<if test="modeOfPaymentId != null">mode_of_payment_id,</if>
<if test="price != null">price,</if>
<if test="remark != null">remark,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateTime != null">update_time,</if>
<if test="updateBy != null">update_by,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="enterpriseId != null">#{enterpriseId},</if>
<if test="modeOfPaymentId != null">#{modeOfPaymentId},</if>
<if test="price != null">#{price},</if>
<if test="remark != null">#{remark},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="updateBy != null">#{updateBy},</if>
</trim>
</insert>
<update id="updatePayOf" parameterType="com.muyu.domain.PayOf">
update pay_for
<trim prefix="SET" suffixOverrides=",">
<if test="enterpriseId != null">enterprise_id = #{enterpriseId},</if>
<if test="modeOfPaymentId != null">mode_of_payment_id = #{modeOfPaymentId},</if>
<if test="price != null">price = #{price},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
</trim>
where id = #{id}
</update>
<delete id="deletePayOfById" parameterType="Long">
delete from pay_for where id = #{id}
</delete>
<delete id="deletePayOfByIds" parameterType="String">
delete from pay_for where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>muyu-modules</artifactId>
<version>3.6.3</version>
</parent>
<artifactId>muyu-networking</artifactId>
<packaging>pom</packaging>
<modules>
<module>muyu-networking-common</module>
<module>muyu-networking-service</module>
</modules>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- SpringBoot Actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Swagger UI -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.fox.version}</version>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- MuYu Common DataSource -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-datasource</artifactId>
</dependency>
<!-- MuYu Common DataScope -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-datascope</artifactId>
</dependency>
<!-- MuYu Common Log -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-log</artifactId>
</dependency>
<!-- MuYu Common Swagger -->
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-common-swagger</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置

View File

@ -13,6 +13,7 @@
<module>muyu-gen</module> <module>muyu-gen</module>
<module>muyu-job</module> <module>muyu-job</module>
<module>muyu-file</module> <module>muyu-file</module>
<module>muyu-networking</module>
</modules> </modules>
<artifactId>muyu-modules</artifactId> <artifactId>muyu-modules</artifactId>

View File

@ -14,10 +14,10 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
config: config:
# 配置中心地址 # 配置中心地址
server-addr: 127.0.0.1:8848 server-addr: 115.159.67.205:8848
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置

View File

@ -67,8 +67,8 @@ create table sys_user (
-- ---------------------------- -- ----------------------------
-- 初始化-用户信息表数据 -- 初始化-用户信息表数据
-- ---------------------------- -- ----------------------------
insert into sys_user values(1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', sysdate(), 'admin', sysdate(), '', null, '管理员'); insert into sys_user values(1, 103, 'admin', '若依', '00', 'ry@163.com', '15888888888', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '115.159.67.205', sysdate(), 'admin', sysdate(), '', null, '管理员');
insert into sys_user values(2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '127.0.0.1', sysdate(), 'admin', sysdate(), '', null, '测试员'); insert into sys_user values(2, 105, 'ry', '若依', '00', 'ry@qq.com', '15666666666', '1', '', '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '115.159.67.205', sysdate(), 'admin', sysdate(), '', null, '测试员');
-- ---------------------------- -- ----------------------------

View File

@ -40,7 +40,7 @@ insert into config_info(id, data_id, group_id, content, md5, gmt_create, gmt_mod
(5,'muyu-system-dev.yml','DEFAULT_GROUP','# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: root\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.muyu.system\n # 配置mapper的扫描找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By muyu\n licenseUrl: https://muyu.vip','48e0ed4a040c402bdc2444213a82c910','2020-11-20 00:00:00','2022-09-29 02:49:09','nacos','0:0:0:0:0:0:0:1','','','系统模块','null','null','yaml','',''), (5,'muyu-system-dev.yml','DEFAULT_GROUP','# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: root\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.muyu.system\n # 配置mapper的扫描找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By muyu\n licenseUrl: https://muyu.vip','48e0ed4a040c402bdc2444213a82c910','2020-11-20 00:00:00','2022-09-29 02:49:09','nacos','0:0:0:0:0:0:0:1','','','系统模块','null','null','yaml','',''),
(6,'muyu-gen-dev.yml','DEFAULT_GROUP','# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: root\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.muyu.gen.domain\n # 配置mapper的扫描找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By muyu\n licenseUrl: https://muyu.vip\n\n# 代码生成\ngen:\n # 作者\n author: muyu\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: com.muyu.system\n # 自动去除表前缀默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n','eb592420b3fceae1402881887b8a6a0d','2020-11-20 00:00:00','2022-09-29 02:49:42','nacos','0:0:0:0:0:0:0:1','','','代码生成','null','null','yaml','',''), (6,'muyu-gen-dev.yml','DEFAULT_GROUP','# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: root\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.muyu.gen.domain\n # 配置mapper的扫描找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By muyu\n licenseUrl: https://muyu.vip\n\n# 代码生成\ngen:\n # 作者\n author: muyu\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: com.muyu.system\n # 自动去除表前缀默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n','eb592420b3fceae1402881887b8a6a0d','2020-11-20 00:00:00','2022-09-29 02:49:42','nacos','0:0:0:0:0:0:0:1','','','代码生成','null','null','yaml','',''),
(7,'muyu-job-dev.yml','DEFAULT_GROUP','# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: root\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.muyu.job.domain\n # 配置mapper的扫描找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By muyu\n licenseUrl: https://muyu.vip\n','edcf0e3fe13fea07b4ec08b1088f30b3','2020-11-20 00:00:00','2022-09-29 02:50:50','nacos','0:0:0:0:0:0:0:1','','','定时任务','null','null','yaml','',''), (7,'muyu-job-dev.yml','DEFAULT_GROUP','# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: root\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.muyu.job.domain\n # 配置mapper的扫描找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By muyu\n licenseUrl: https://muyu.vip\n','edcf0e3fe13fea07b4ec08b1088f30b3','2020-11-20 00:00:00','2022-09-29 02:50:50','nacos','0:0:0:0:0:0:0:1','','','定时任务','null','null','yaml','',''),
(8,'muyu-file-dev.yml','DEFAULT_GROUP','# 本地文件上传 \r\nfile:\r\n domain: http://127.0.0.1:9300\r\n path: D:/muyu/uploadPath\r\n prefix: /statics\r\n\r\n# FastDFS配置\r\nfdfs:\r\n domain: http://8.129.231.12\r\n soTimeout: 3000\r\n connectTimeout: 2000\r\n trackerList: 8.129.231.12:22122\r\n\r\n# Minio配置\r\nminio:\r\n url: http://8.129.231.12:9000\r\n accessKey: minioadmin\r\n secretKey: minioadmin\r\n bucketName: test','5382b93f3d8059d6068c0501fdd41195','2020-11-20 00:00:00','2020-12-21 21:01:59',NULL,'0:0:0:0:0:0:0:1','','','文件服务','null','null','yaml',NULL,''), (8,'muyu-file-dev.yml','DEFAULT_GROUP','# 本地文件上传 \r\nfile:\r\n domain: http://115.159.67.205:9300\r\n path: D:/muyu/uploadPath\r\n prefix: /statics\r\n\r\n# FastDFS配置\r\nfdfs:\r\n domain: http://8.129.231.12\r\n soTimeout: 3000\r\n connectTimeout: 2000\r\n trackerList: 8.129.231.12:22122\r\n\r\n# Minio配置\r\nminio:\r\n url: http://8.129.231.12:9000\r\n accessKey: minioadmin\r\n secretKey: minioadmin\r\n bucketName: test','5382b93f3d8059d6068c0501fdd41195','2020-11-20 00:00:00','2020-12-21 21:01:59',NULL,'0:0:0:0:0:0:0:1','','','文件服务','null','null','yaml',NULL,''),
(9,'sentinel-muyu-gateway','DEFAULT_GROUP','[\r\n {\r\n \"resource\": \"muyu-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"muyu-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"muyu-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"muyu-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n]','9f3a3069261598f74220bc47958ec252','2020-11-20 00:00:00','2020-11-20 00:00:00',NULL,'0:0:0:0:0:0:0:1','','','限流策略','null','null','json',NULL,''); (9,'sentinel-muyu-gateway','DEFAULT_GROUP','[\r\n {\r\n \"resource\": \"muyu-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"muyu-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"muyu-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"muyu-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n]','9f3a3069261598f74220bc47958ec252','2020-11-20 00:00:00','2020-11-20 00:00:00',NULL,'0:0:0:0:0:0:0:1','','','限流策略','null','null','json',NULL,'');