权限相关

master
hongtianzai 3 years ago
parent 3884ecf6e6
commit 71f991d73c

@ -150,11 +150,11 @@
<artifactId>knife4j-spring-boot-starter</artifactId> <artifactId>knife4j-spring-boot-starter</artifactId>
<version>2.0.2</version> <version>2.0.2</version>
</dependency>--> </dependency>-->
<dependency> <!-- <dependency>
<groupId>com.glxp</groupId> <groupId>com.glxp</groupId>
<artifactId>api-swagger</artifactId> <artifactId>api-swagger</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
</dependency> </dependency>-->
</dependencies> </dependencies>
<build> <build>

@ -6,6 +6,7 @@ import com.glxp.udidl.admin.service.sys.SysMenuService;
import com.glxp.udidl.common.res.BaseResponse; import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
@ -22,12 +23,12 @@ public class SysMenuController {
} }
@AuthRuleAnnotation("sys_menu_all") @AuthRuleAnnotation("sys_menu_all")
@PostMapping("/insert") @PostMapping("/insert")
public BaseResponse insert(SysMenuModel model){ public BaseResponse insert(@RequestBody SysMenuModel model){
return sysMenuService.insert(model); return sysMenuService.insert(model);
} }
@AuthRuleAnnotation("sys_menu_all") @AuthRuleAnnotation("sys_menu_all")
@PostMapping("update") @PostMapping("update")
public BaseResponse update(SysMenuModel model){ public BaseResponse update(@RequestBody SysMenuModel model){
return sysMenuService.update(model); return sysMenuService.update(model);
} }
@AuthRuleAnnotation("sys_menu_all") @AuthRuleAnnotation("sys_menu_all")

@ -0,0 +1,45 @@
package com.glxp.udidl.admin.controller.sys;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.admin.service.sys.SysRoleService;
import com.glxp.udidl.common.res.BaseResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("sys/role")
public class SysRoleController {
@Autowired
SysRoleService sysRoleService;
@AuthRuleAnnotation("sys_role_all")
@PostMapping("/list")
public BaseResponse getList(@RequestBody SysRoleParam param){
return sysRoleService.list(param);
}
@AuthRuleAnnotation("sys_role_all")
@PostMapping("/insert")
public BaseResponse insert(@RequestBody SysRoleModel model){
return sysRoleService.insert(model);
}
@AuthRuleAnnotation("sys_role_all")
@PostMapping("update")
public BaseResponse update(@RequestBody SysRoleModel model){
return sysRoleService.update(model);
}
@AuthRuleAnnotation("sys_role_all")
@PostMapping("/detail")
public BaseResponse detail(Integer id){
return sysRoleService.detail(id);
}
@AuthRuleAnnotation("sys_role_all")
@PostMapping("/delete")
public BaseResponse delete(Integer id){
return sysRoleService.delete(id);
}
}

@ -2,7 +2,9 @@ package com.glxp.udidl.admin.controller.udplat;
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation; import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
import com.glxp.udidl.admin.dto.udplat.ProductParam; import com.glxp.udidl.admin.dto.udplat.ProductParam;
import com.glxp.udidl.admin.dto.udplat.UnitsListModel;
import com.glxp.udidl.admin.dto.udplat.UnitsParam; import com.glxp.udidl.admin.dto.udplat.UnitsParam;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.udplat.UdplatDistributorService; import com.glxp.udidl.admin.service.udplat.UdplatDistributorService;
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService; import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
import com.glxp.udidl.common.res.BaseResponse; import com.glxp.udidl.common.res.BaseResponse;
@ -12,6 +14,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
@Api(tags = "第三方接口") @Api(tags = "第三方接口")
@RestController @RestController
public class ThirdApiController { public class ThirdApiController {
@ -23,7 +26,7 @@ public class ThirdApiController {
@ApiOperation("获取往来单位信息") @ApiOperation("获取往来单位信息")
@AuthRuleAnnotation("third_api_all") @AuthRuleAnnotation("third_api_all")
@PostMapping("/udiwms/erp/getUnits") @PostMapping("/udiwms/erp/getUnits")
public BaseResponse getUnitsList(@RequestBody UnitsParam param){ public BaseResponse<PageSimpleResponse<UnitsListModel>> getUnitsList(@RequestBody UnitsParam param){
return udplatDistributorService.getUnitsList(param); return udplatDistributorService.getUnitsList(param);
} }
@ApiOperation("获取产品信息") @ApiOperation("获取产品信息")

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.dao.sys; package com.glxp.udidl.admin.dao.sys;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.admin.entity.sys.SysRole; import com.glxp.udidl.admin.entity.sys.SysRole;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
@ -16,4 +17,5 @@ public interface SysRoleMapper {
List<SysRole> selectAll(); List<SysRole> selectAll();
int updateByPrimaryKey(SysRole record); int updateByPrimaryKey(SysRole record);
List<SysRole> list(SysRoleParam param);
} }

@ -6,6 +6,7 @@ import com.glxp.udidl.admin.dto.udplat.BaseParam;
import com.glxp.udidl.admin.dto.udplat.UnitsListModel; import com.glxp.udidl.admin.dto.udplat.UnitsListModel;
import com.glxp.udidl.admin.entity.udplat.UdplatDistributor; import com.glxp.udidl.admin.entity.udplat.UdplatDistributor;
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List; import java.util.List;
@ -22,5 +23,5 @@ public interface UdplatDistributorMapper {
int updateByPrimaryKey(UdplatDistributor record); int updateByPrimaryKey(UdplatDistributor record);
List<UdplatDistributor> list(BaseParam param); List<UdplatDistributor> list(BaseParam param);
UdplatDistributor selectByDistributorId(String id); UdplatDistributor selectByDistributorId(String id);
List<UnitsListModel> getUnitsList(String key); List<UnitsListModel> getUnitsList(@Param("key") String key);
} }

@ -5,6 +5,6 @@ import lombok.Data;
@Data @Data
public class ProductGoodsMatchModel extends ProductInfoEntity { public class ProductGoodsMatchModel extends ProductInfoEntity {
private String deliveryGoodId;//目录key private String deliveryGoodsId;//目录key
private String medicalCode;//医保编码 private String medicalCode;//医保编码
} }

@ -25,6 +25,10 @@ public class MenuTreeModel {
* *
*/ */
private String perms; private String perms;
/**
*
*/
private Integer sort;
/** /**
* 0 1 * 0 1

@ -36,4 +36,8 @@ public class SysMenuModel {
* 0 1 * 0 1
*/ */
private String status; private String status;
/**
*
*/
private Integer sort;
} }

@ -0,0 +1,30 @@
package com.glxp.udidl.admin.dto.sys;
import lombok.Data;
@Data
public class SysRoleModel {
/**
*
*/
private Integer id;
/**
*
*/
private String name;
/**
*
*/
private String code;
/**
* 0: ,1:
*/
private String status;
/**
*
*/
private Integer sort;
}

@ -0,0 +1,10 @@
package com.glxp.udidl.admin.dto.sys;
import com.glxp.udidl.admin.req.ListPageRequest;
import lombok.Data;
@Data
public class SysRoleParam extends ListPageRequest {
private String status;
private String name;
}

@ -0,0 +1,45 @@
package com.glxp.udidl.admin.dto.sys;
import lombok.Data;
@Data
public class SysUserModel {
/**
* ID
*/
private Integer id;
/**
* key,
*/
private String userKey;
/**
*
*/
private String userName;
/**
*
*/
private String nickName;
/**
*
*/
private String password;
/**
* 0 1
*/
private String status;
/**
* ID
*/
private Integer roleId;
private String Udplat_appId;
private String Udplat_secretKey;
private String Udplat_userName;
}

@ -0,0 +1,10 @@
package com.glxp.udidl.admin.dto.sys;
import com.glxp.udidl.admin.req.ListPageRequest;
import lombok.Data;
@Data
public class SysUserParam extends ListPageRequest {
private String status;
private String name;
}

@ -6,6 +6,6 @@ import lombok.Data;
@Data @Data
public class UnitsParam extends ListPageRequest { public class UnitsParam extends ListPageRequest {
@ApiModelProperty("关键字查询") @ApiModelProperty(value = "关键字查询")
private String key; private String key;
} }

@ -1,5 +1,7 @@
package com.glxp.udidl.admin.entity.sys; package com.glxp.udidl.admin.entity.sys;
import lombok.Data;
import java.util.Date; import java.util.Date;
/** /**
@ -8,6 +10,7 @@ import java.util.Date;
* @author hong * @author hong
* @date 2022/01/17 * @date 2022/01/17
*/ */
@Data
public class SysMenu { public class SysMenu {
/** /**
* *
@ -38,65 +41,14 @@ public class SysMenu {
* 0 1 * 0 1
*/ */
private String status; private String status;
/**
*
*/
private Integer sort;
/** /**
* *
*/ */
private Date createTime; private Date createTime;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public Integer getParentId() {
return parentId;
}
public void setParentId(Integer parentId) {
this.parentId = parentId;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type == null ? null : type.trim();
}
public String getPerms() {
return perms;
}
public void setPerms(String perms) {
this.perms = perms == null ? null : perms.trim();
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status == null ? null : status.trim();
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
} }

@ -1,5 +1,8 @@
package com.glxp.udidl.admin.entity.sys; package com.glxp.udidl.admin.entity.sys;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date; import java.util.Date;
/** /**
@ -8,6 +11,7 @@ import java.util.Date;
* @author hong * @author hong
* @date 2022/01/17 * @date 2022/01/17
*/ */
@Data
public class SysRole { public class SysRole {
/** /**
* *
@ -28,49 +32,16 @@ public class SysRole {
* 0: ,1: * 0: ,1:
*/ */
private String status; private String status;
/**
*
*/
private Integer sort;
/** /**
* *
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
private Date createTime; private Date createTime;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code == null ? null : code.trim();
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status == null ? null : status.trim();
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
} }

@ -33,6 +33,10 @@ public class SysUser {
* *
*/ */
private String password; private String password;
/**
* 0 1
*/
private String status;
/** /**
* *
@ -44,59 +48,7 @@ public class SysUser {
*/ */
private Integer roleId; private Integer roleId;
public Integer getId() { private String Udplat_appId;
return id; private String Udplat_secretKey;
} private String Udplat_userName;
public void setId(Integer id) {
this.id = id;
}
public String getUserKey() {
return userKey;
}
public void setUserKey(String userKey) {
this.userKey = userKey == null ? null : userKey.trim();
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName == null ? null : userName.trim();
}
public String getNickName() {
return nickName;
}
public void setNickName(String nickName) {
this.nickName = nickName == null ? null : nickName.trim();
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password == null ? null : password.trim();
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Integer getRoleId() {
return roleId;
}
public void setRoleId(Integer roleId) {
this.roleId = roleId;
}
} }

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.req; package com.glxp.udidl.admin.req;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
import javax.validation.constraints.Max; import javax.validation.constraints.Max;
@ -10,10 +11,11 @@ import javax.validation.constraints.Min;
*/ */
@Data @Data
public class ListPageRequest { public class ListPageRequest {
@ApiModelProperty(value = "页码",required=true,example = "1")
@Min(message = "分页参数错误", value = 1) @Min(message = "分页参数错误", value = 1)
private Integer page; private Integer page;
@ApiModelProperty(value = "行数",required = true,example = "10")
@Min(value = 1, message = "分页参数不能小于1") @Min(value = 1, message = "分页参数不能小于1")
@Max(value = 1000, message = "分页参数不能大于50") @Max(value = 1000, message = "分页参数不能大于50")
private Integer limit; private Integer limit;

@ -1,5 +1,6 @@
package com.glxp.udidl.admin.res; package com.glxp.udidl.admin.res;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
import java.util.List; import java.util.List;
@ -10,7 +11,9 @@ import java.util.List;
@Data @Data
public class PageSimpleResponse<T> { public class PageSimpleResponse<T> {
// 总数 // 总数
@ApiModelProperty(value = "总数",position = 0)
private Long total; private Long total;
// 列表 // 列表
@ApiModelProperty(value = "列表",position = 1)
private List<T> list; private List<T> list;
} }

@ -12,11 +12,16 @@ import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.io.BufferedWriter; import java.io.ByteArrayInputStream;
import java.io.File; import java.io.File;
import java.io.FileWriter; import java.io.FileOutputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.stream.Collectors;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
@Service @Service
public class ProductInfoDlService { public class ProductInfoDlService {
@ -26,17 +31,34 @@ public class ProductInfoDlService {
ProductInfoService productInfoService; ProductInfoService productInfoService;
@Autowired @Autowired
FileInfoService fileInfoService; FileInfoService fileInfoService;
public BaseResponse ExportToFile(Date startDate, Date endDate,String downloadType){
if(startDate.getTime()>endDate.getTime()) public BaseResponse ExportToFile(Date startDate, Date endDate, String downloadType) {
return ResultVOUtils.error(-1,"起始日期不能大于结束日期!"); if (startDate.getTime() > endDate.getTime())
String date0= DateUtil.formatDate(startDate); return ResultVOUtils.error(-1, "起始日期不能大于结束日期!");
String date1=DateUtil.formatDate(DateUtil.addDays(endDate,1));//结束日期+1天 String date0 = DateUtil.formatDate(startDate);
List<ProductInfoEntity> list = productInfoService.selectByUpdateTime(date0,date1); String date1 = DateUtil.formatDate(DateUtil.addDays(endDate, 1));//结束日期+1天
String DateStr0=DateUtil.formatDate(startDate,"yyyyMMdd"); List<ProductInfoEntity> list = productInfoService.selectByUpdateTime(date0, date1);
String dateStr1=DateUtil.formatDate(endDate,"yyyyMMdd"); String DateStr0 = DateUtil.formatDate(startDate, "yyyyMMdd");
String fileName = "UDI_"+DateStr0+"_"+dateStr1+"_"+list.size()+".json"; String dateStr1 = DateUtil.formatDate(endDate, "yyyyMMdd");
String path = globalConfig.getDownloadPath()+"/"+fileName; //String fileName = "UDI_"+DateStr0+"_"+dateStr1+"_"+list.size()+".json";
try String fileName = "UDI_" + DateStr0 + "_" + dateStr1 + "_" + list.size() + ".zip";
String path = globalConfig.getDownloadPath() + "/" + fileName;
BaseResponse result = SaveToZip(list, path);
if (result.success()) {
File file = new File(path);
FileInfoEntity fileInfoEntity = new FileInfoEntity();
fileInfoEntity.setType("productInfo");
fileInfoEntity.setFileName(fileName);
fileInfoEntity.setDownloadType(downloadType);
fileInfoEntity.setStartDate(startDate);
fileInfoEntity.setEndDate(endDate);
fileInfoEntity.setCount(list.size());
fileInfoEntity.setFileSize(file.length());
fileInfoEntity.setCreateTime(new Date());
fileInfoService.insert(fileInfoEntity);
}
return result;
/* try
{ {
if(list.size()>0){ if(list.size()>0){
BufferedWriter bw = new BufferedWriter(new FileWriter(path,false)); BufferedWriter bw = new BufferedWriter(new FileWriter(path,false));
@ -61,6 +83,42 @@ public class ProductInfoDlService {
}catch (Exception e){ }catch (Exception e){
return ResultVOUtils.error(-1,e.getMessage()); return ResultVOUtils.error(-1,e.getMessage());
} }
return ResultVOUtils.success(); return ResultVOUtils.success();*/
}
private BaseResponse SaveToZip(List<ProductInfoEntity> list, String fileName) {
int count = list.size();
int limit = 10000;
int pageTotal = 0;
if (count % limit == 0) {
pageTotal = count / limit;
} else {
pageTotal = count / limit + 1;
}
int page = 1;
int BUFFER_SIZE = 4096;
byte[] buffer = new byte[BUFFER_SIZE];
int readLength;
try {
File zipFile = new File(fileName);
ZipOutputStream zip = new ZipOutputStream(new FileOutputStream(zipFile));
while (page <= pageTotal) {
List<ProductInfoEntity> subList = list.stream().skip((page - 1) * limit).limit(limit).collect(Collectors.toList());
String ss = JSON.toJSONString(subList);
zip.putNextEntry(new ZipEntry(page + ".json"));
InputStream input = new ByteArrayInputStream(ss.getBytes(StandardCharsets.UTF_8));
while ((readLength = input.read(buffer, 0, BUFFER_SIZE)) != -1) {
zip.write(buffer, 0, readLength);
}
zip.flush();
input.close();
page++;
}
zip.close();
} catch (Exception e) {
e.printStackTrace();
return ResultVOUtils.error(-1, e.getMessage());
}
return ResultVOUtils.success();
} }
} }

@ -0,0 +1,13 @@
package com.glxp.udidl.admin.service.sys;
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.common.res.BaseResponse;
public interface SysRoleService {
BaseResponse list(SysRoleParam param);
BaseResponse insert(SysRoleModel model);
BaseResponse update(SysRoleModel model);
BaseResponse detail(Integer id);
BaseResponse delete(Integer id);
}

@ -0,0 +1,68 @@
package com.glxp.udidl.admin.service.sys.impl;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.glxp.udidl.admin.dao.sys.SysRoleMapper;
import com.glxp.udidl.admin.dto.sys.SysRoleModel;
import com.glxp.udidl.admin.dto.sys.SysRoleParam;
import com.glxp.udidl.admin.entity.sys.SysRole;
import com.glxp.udidl.admin.res.PageSimpleResponse;
import com.glxp.udidl.admin.service.sys.SysRoleService;
import com.glxp.udidl.common.res.BaseResponse;
import com.glxp.udidl.common.util.ResultVOUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
import java.util.List;
@Service
public class SysRoleServiceImpl implements SysRoleService {
@Autowired
SysRoleMapper mapper;
@Override
public BaseResponse list(SysRoleParam param) {
PageHelper.startPage(param.getPage(), param.getLimit());
List<SysRole> list = mapper.list(param);
PageInfo<SysRole> pageInfo = new PageInfo<>(list);
PageSimpleResponse<SysRole> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(pageInfo.getTotal());
pageSimpleResponse.setList(list);
return ResultVOUtils.success(pageSimpleResponse);
}
@Override
public BaseResponse insert(SysRoleModel model) {
SysRole sysRole = new SysRole();
BeanUtils.copyProperties(model, sysRole);
sysRole.setCreateTime(new Date());
mapper.insert(sysRole);
return ResultVOUtils.success();
}
@Override
public BaseResponse update(SysRoleModel model) {
SysRole sysRole = mapper.selectByPrimaryKey(model.getId());
if (sysRole == null)
return ResultVOUtils.error(-1, "找不到记录");
BeanUtils.copyProperties(model, sysRole);
mapper.updateByPrimaryKey(sysRole);
return ResultVOUtils.success();
}
@Override
public BaseResponse detail(Integer id) {
SysRole sysRole = mapper.selectByPrimaryKey(id);
if (sysRole == null)
return ResultVOUtils.error(-1, "找不到记录");
return ResultVOUtils.success(sysRole);
}
@Override
public BaseResponse delete(Integer id) {
mapper.deleteByPrimaryKey(id);
return ResultVOUtils.success();
}
}

@ -7,6 +7,7 @@
<result column="parent_id" jdbcType="INTEGER" property="parentId" /> <result column="parent_id" jdbcType="INTEGER" property="parentId" />
<result column="type" jdbcType="CHAR" property="type" /> <result column="type" jdbcType="CHAR" property="type" />
<result column="perms" jdbcType="VARCHAR" property="perms" /> <result column="perms" jdbcType="VARCHAR" property="perms" />
<result column="sort" jdbcType="INTEGER" property="sort" />
<result column="status" jdbcType="CHAR" property="status" /> <result column="status" jdbcType="CHAR" property="status" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
</resultMap> </resultMap>
@ -16,10 +17,10 @@
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysMenu"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysMenu">
insert into sys_menu (id, name, parent_id, insert into sys_menu (id, name, parent_id,
type, perms, status, create_time type, perms, status,sort, create_time
) )
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{parentId,jdbcType=INTEGER}, values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{parentId,jdbcType=INTEGER},
#{type,jdbcType=CHAR}, #{perms,jdbcType=VARCHAR}, #{status,jdbcType=CHAR}, #{createTime,jdbcType=TIMESTAMP} #{type,jdbcType=CHAR}, #{perms,jdbcType=VARCHAR}, #{status,jdbcType=CHAR},#{sort,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}
) )
</insert> </insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysMenu"> <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysMenu">
@ -28,16 +29,17 @@
parent_id = #{parentId,jdbcType=INTEGER}, parent_id = #{parentId,jdbcType=INTEGER},
type = #{type,jdbcType=CHAR}, type = #{type,jdbcType=CHAR},
perms = #{perms,jdbcType=VARCHAR}, perms = #{perms,jdbcType=VARCHAR},
sort = #{sort,jdbcType=INTEGER},
status = #{status,jdbcType=CHAR} status = #{status,jdbcType=CHAR}
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</update> </update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select id, name, parent_id, type, perms, status, create_time select id, name, parent_id, type,sort, perms, status, create_time
from sys_menu from sys_menu
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</select> </select>
<select id="selectAll" resultMap="BaseResultMap"> <select id="selectAll" resultMap="BaseResultMap">
select id, name, parent_id, type, perms, status, create_time select id, name, parent_id, type, perms,sort, status, create_time
from sys_menu from sys_menu
</select> </select>
<select id="getChildCount" resultType="java.lang.Integer" parameterType="java.lang.Integer"> <select id="getChildCount" resultType="java.lang.Integer" parameterType="java.lang.Integer">

@ -1,38 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?> <?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"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.udidl.admin.dao.sys.SysRoleMapper"> <mapper namespace="com.glxp.udidl.admin.dao.sys.SysRoleMapper">
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysRole"> <resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysRole">
<id column="id" jdbcType="INTEGER" property="id" /> <id column="id" jdbcType="INTEGER" property="id"/>
<result column="name" jdbcType="VARCHAR" property="name" /> <result column="name" jdbcType="VARCHAR" property="name"/>
<result column="code" jdbcType="VARCHAR" property="code" /> <result column="code" jdbcType="VARCHAR" property="code"/>
<result column="status" jdbcType="CHAR" property="status" /> <result column="status" jdbcType="CHAR" property="status"/>
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> <result column="sort" jdbcType="INTEGER" property="sort"/>
</resultMap> <result column="create_time" jdbcType="TIMESTAMP" property="createTime"/>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> </resultMap>
delete from sys_role <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
where id = #{id,jdbcType=INTEGER} delete
</delete> from sys_role
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysRole"> where id = #{id,jdbcType=INTEGER}
insert into sys_role (id, name, code, </delete>
status, create_time) <insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, insert into sys_role (id, name, code,
#{status,jdbcType=CHAR}, #{createTime,jdbcType=TIMESTAMP}) status,sort, create_time)
</insert> values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR},
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysRole"> #{status,jdbcType=CHAR},#{sort,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP})
update sys_role </insert>
set name = #{name,jdbcType=VARCHAR}, <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
code = #{code,jdbcType=VARCHAR}, update sys_role
status = #{status,jdbcType=CHAR}, set name = #{name,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP} code = #{code,jdbcType=VARCHAR},
where id = #{id,jdbcType=INTEGER} status = #{status,jdbcType=CHAR},
</update> sort = #{sort,jdbcType=INTEGER},
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> create_time = #{createTime,jdbcType=TIMESTAMP}
select id, name, code, status, create_time where id = #{id,jdbcType=INTEGER}
from sys_role </update>
where id = #{id,jdbcType=INTEGER} <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
</select> select *
<select id="selectAll" resultMap="BaseResultMap"> from sys_role
select id, name, code, status, create_time where id = #{id,jdbcType=INTEGER}
from sys_role </select>
</select> <select id="selectAll" resultMap="BaseResultMap">
select *
from sys_role
</select>
<select id="list" parameterType="com.glxp.udidl.admin.dto.sys.SysRoleParam" resultMap="BaseResultMap">
select * from sys_role
<where>
<if test="status != null and status != '' ">
and status = #{status}
</if>
<if test="name != null and name != '' ">
and name like concat('%',#{name},'%')
</if>
</where>
</select>
</mapper> </mapper>

@ -6,6 +6,10 @@
<result column="user_key" jdbcType="VARCHAR" property="userKey" /> <result column="user_key" jdbcType="VARCHAR" property="userKey" />
<result column="user_name" jdbcType="VARCHAR" property="userName" /> <result column="user_name" jdbcType="VARCHAR" property="userName" />
<result column="nick_name" jdbcType="VARCHAR" property="nickName" /> <result column="nick_name" jdbcType="VARCHAR" property="nickName" />
<result column="Udplat_appId" jdbcType="VARCHAR" property="Udplat_appId" />
<result column="Udplat_secretKey" jdbcType="VARCHAR" property="Udplat_secretKey" />
<result column="Udplat_userName" jdbcType="VARCHAR" property="Udplat_userName" />
<result column="status" jdbcType="CHAR" property="status"/>
<result column="password" jdbcType="VARCHAR" property="password" /> <result column="password" jdbcType="VARCHAR" property="password" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" /> <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="role_id" jdbcType="INTEGER" property="roleId" /> <result column="role_id" jdbcType="INTEGER" property="roleId" />
@ -15,11 +19,12 @@
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</delete> </delete>
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysUser"> <insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysUser">
insert into sys_user (id, user_key, user_name, insert into sys_user (id, user_key, user_name, Udplat_appId,Udplat_secretKey,Udplat_userName
nick_name, password, create_time, nick_name, password, sort, create_time,
role_id) role_id)
values (#{id,jdbcType=INTEGER}, #{userKey,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR}, values (#{id,jdbcType=INTEGER}, #{userKey,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{Udplat_appId,jdbcType=VARCHAR}, #{Udplat_secretKey,jdbcType=VARCHAR}, #{Udplat_userName,jdbcType=VARCHAR},
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},#{sort,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP},
#{roleId,jdbcType=INTEGER}) #{roleId,jdbcType=INTEGER})
</insert> </insert>
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysUser"> <update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysUser">
@ -27,18 +32,21 @@
set user_key = #{userKey,jdbcType=VARCHAR}, set user_key = #{userKey,jdbcType=VARCHAR},
user_name = #{userName,jdbcType=VARCHAR}, user_name = #{userName,jdbcType=VARCHAR},
nick_name = #{nickName,jdbcType=VARCHAR}, nick_name = #{nickName,jdbcType=VARCHAR},
Udplat_appId = #{Udplat_appId,jdbcType=VARCHAR},
Udplat_secretKey = #{Udplat_secretKey,jdbcType=VARCHAR},
Udplat_userName = #{Udplat_userName,jdbcType=VARCHAR},
status = #{status,jdbcType=CHAR},
password = #{password,jdbcType=VARCHAR}, password = #{password,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
role_id = #{roleId,jdbcType=INTEGER} role_id = #{roleId,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</update> </update>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select id, user_key, user_name, nick_name, password, create_time, role_id select *
from sys_user from sys_user
where id = #{id,jdbcType=INTEGER} where id = #{id,jdbcType=INTEGER}
</select> </select>
<select id="selectAll" resultMap="BaseResultMap"> <select id="selectAll" resultMap="BaseResultMap">
select id, user_key, user_name, nick_name, password, create_time, role_id select *
from sys_user from sys_user
</select> </select>
<select id="hasAuthPerms" resultType="java.lang.Integer" > <select id="hasAuthPerms" resultType="java.lang.Integer" >

@ -50,7 +50,7 @@
from udplat_hospital from udplat_hospital
<where> <where>
<if test="name != '' and name != null"> <if test="name != '' and name != null">
and distributorName like concat('%',#{name},'%') and purchaseName like concat('%',#{name},'%')
</if> </if>
<if test="startDate != '' and startDate != null"> <if test="startDate != '' and startDate != null">

@ -43,7 +43,7 @@
from udplat_manufacture from udplat_manufacture
<where> <where>
<if test="name != '' and name != null"> <if test="name != '' and name != null">
and distributorName like concat('%',#{name},'%') and manufactureName like concat('%',#{name},'%')
</if> </if>
<if test="startDate != '' and startDate != null"> <if test="startDate != '' and startDate != null">

@ -33,6 +33,11 @@
<artifactId>hutool-all</artifactId> <artifactId>hutool-all</artifactId>
<version>5.5.1</version> <version>5.5.1</version>
</dependency> </dependency>
<dependency>
<groupId>com.glxp</groupId>
<artifactId>api-swagger</artifactId>
<version>0.0.1</version>
</dependency>
</dependencies> </dependencies>
</project> </project>

@ -1,5 +1,6 @@
package com.glxp.udidl.common.res; package com.glxp.udidl.common.res;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
/** /**
@ -8,11 +9,12 @@ import lombok.Data;
*/ */
@Data @Data
public class BaseResponse<T> { public class BaseResponse<T> {
public boolean success(){return this.code.equals(20000);}
public boolean success(){return this.code.equals(20000);};
@ApiModelProperty(position = 0)
private Integer code; private Integer code;
@ApiModelProperty(position = 1)
private String message; private String message;
@ApiModelProperty(position = 2)
private T data; private T data;
} }

Loading…
Cancel
Save