修复已知问题
This commit is contained in:
@@ -30,8 +30,6 @@ public class PlugController extends BaseController {
|
|||||||
@Resource
|
@Resource
|
||||||
private PlugService plugService;
|
private PlugService plugService;
|
||||||
|
|
||||||
@PreAuthorize("hasAuthority('sys:plug:list')")
|
|
||||||
@OperationLog
|
|
||||||
@ApiOperation("分页查询插件扩展")
|
@ApiOperation("分页查询插件扩展")
|
||||||
@GetMapping("/page")
|
@GetMapping("/page")
|
||||||
public ApiResult<PageResult<Plug>> page(PlugParam param) {
|
public ApiResult<PageResult<Plug>> page(PlugParam param) {
|
||||||
@@ -39,8 +37,6 @@ public class PlugController extends BaseController {
|
|||||||
return success(plugService.pageRel(param));
|
return success(plugService.pageRel(param));
|
||||||
}
|
}
|
||||||
|
|
||||||
@PreAuthorize("hasAuthority('sys:plug:list')")
|
|
||||||
@OperationLog
|
|
||||||
@ApiOperation("查询全部插件扩展")
|
@ApiOperation("查询全部插件扩展")
|
||||||
@GetMapping()
|
@GetMapping()
|
||||||
public ApiResult<List<Plug>> list(PlugParam param) {
|
public ApiResult<List<Plug>> list(PlugParam param) {
|
||||||
@@ -48,8 +44,6 @@ public class PlugController extends BaseController {
|
|||||||
return success(plugService.listRel(param));
|
return success(plugService.listRel(param));
|
||||||
}
|
}
|
||||||
|
|
||||||
@PreAuthorize("hasAuthority('sys:plug:list')")
|
|
||||||
@OperationLog
|
|
||||||
@ApiOperation("根据id查询插件扩展")
|
@ApiOperation("根据id查询插件扩展")
|
||||||
@GetMapping("/{id}")
|
@GetMapping("/{id}")
|
||||||
public ApiResult<Plug> get(@PathVariable("id") Integer id) {
|
public ApiResult<Plug> get(@PathVariable("id") Integer id) {
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package com.gxwebsoft.common.system.entity;
|
|||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.*;
|
import com.baomidou.mybatisplus.annotation.*;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
@@ -61,6 +62,30 @@ public class Organization implements Serializable {
|
|||||||
@ApiModelProperty(value = "园区介绍")
|
@ApiModelProperty(value = "园区介绍")
|
||||||
private String about;
|
private String about;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "联系电话")
|
||||||
|
private String phone;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "企业邮箱")
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "成立时间")
|
||||||
|
private Date establishTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "注册资金")
|
||||||
|
private BigDecimal registeredCapital;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "经营范围")
|
||||||
|
private String business;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "经营状态")
|
||||||
|
private Integer businessStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "参保人数")
|
||||||
|
private Integer insureds;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "所属行业")
|
||||||
|
private String industry;
|
||||||
|
|
||||||
@ApiModelProperty(value = "负责人id")
|
@ApiModelProperty(value = "负责人id")
|
||||||
private Integer leaderId;
|
private Integer leaderId;
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,9 @@ import io.swagger.annotations.ApiModelProperty;
|
|||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 组织机构查询参数
|
* 组织机构查询参数
|
||||||
*
|
*
|
||||||
@@ -71,6 +74,38 @@ public class OrganizationParam extends BaseParam {
|
|||||||
@QueryField(type = QueryType.EQ)
|
@QueryField(type = QueryType.EQ)
|
||||||
private String about;
|
private String about;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "联系电话")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private String phone;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "企业邮箱")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private String email;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "成立时间")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private Date establishTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "注册资金")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private BigDecimal registeredCapital;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "经营范围")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private String business;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "经营状态")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private Integer businessStatus;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "参保人数")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private Integer insureds;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "所属行业")
|
||||||
|
@QueryField(type = QueryType.EQ)
|
||||||
|
private String industry;
|
||||||
|
|
||||||
@ApiModelProperty(value = "负责人id")
|
@ApiModelProperty(value = "负责人id")
|
||||||
@QueryField(type = QueryType.EQ)
|
@QueryField(type = QueryType.EQ)
|
||||||
private Integer leaderId;
|
private Integer leaderId;
|
||||||
|
|||||||
Reference in New Issue
Block a user