权限控制,excel通用导入
parent
805459f3ad
commit
f923364674
@ -0,0 +1,52 @@
|
||||
package com.glxp.udidl.admin.config;
|
||||
|
||||
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||
import com.glxp.udidl.admin.dao.sys.SysUserMapper;
|
||||
import com.glxp.udidl.admin.exception.JsonException;
|
||||
import org.aspectj.lang.JoinPoint;
|
||||
import org.aspectj.lang.annotation.Aspect;
|
||||
import org.aspectj.lang.annotation.Before;
|
||||
import org.aspectj.lang.annotation.Pointcut;
|
||||
import org.aspectj.lang.reflect.MethodSignature;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Component;
|
||||
import org.springframework.web.context.request.RequestContextHolder;
|
||||
import org.springframework.web.context.request.ServletRequestAttributes;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
@Aspect
|
||||
@Component
|
||||
public class AuthAspect {
|
||||
@Autowired
|
||||
private SysUserMapper sysUserMapper;
|
||||
@Autowired
|
||||
private GlobalConfig globalConfig;
|
||||
@Pointcut("@annotation(com.glxp.udidl.admin.annotation.AuthRuleAnnotation)")
|
||||
private void authMethod() {
|
||||
}
|
||||
|
||||
@Before(value = "authMethod()")
|
||||
public void before(JoinPoint joinPoint) {
|
||||
if(globalConfig.isOpenAuth() == false)
|
||||
return;
|
||||
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
|
||||
|
||||
if (attributes == null) {
|
||||
throw new JsonException(-1, "attributes = null");
|
||||
}
|
||||
HttpServletRequest request = attributes.getRequest();
|
||||
|
||||
String key = request.getHeader("key");
|
||||
if (key == null || key == "")
|
||||
throw new JsonException(401, "key不能为空");
|
||||
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
|
||||
Method method = signature.getMethod();
|
||||
AuthRuleAnnotation action = method.getAnnotation(AuthRuleAnnotation.class);
|
||||
String perms = action.value();
|
||||
Integer res = sysUserMapper.hasAuthPerms(key,perms);
|
||||
if(res == 0)
|
||||
throw new JsonException(402, "无权限!");
|
||||
}
|
||||
}
|
@ -0,0 +1,58 @@
|
||||
package com.glxp.udidl.admin.controller.device;
|
||||
|
||||
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||
import com.glxp.udidl.admin.service.DataSync.DeviceSyncService;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@RestController
|
||||
public class UdidlDeviceController {
|
||||
private static final Logger logger = LoggerFactory.getLogger(UdidlDeviceController.class);
|
||||
@Autowired
|
||||
DeviceSyncService deviceSyncService;
|
||||
|
||||
@AuthRuleAnnotation("udidl_udidlDevice_all")
|
||||
@GetMapping("udidl/device/dlByDays")
|
||||
public BaseResponse dlByDays(@DateTimeFormat(pattern = "yyyy-MM-dd") Date startDate, @DateTimeFormat(pattern = "yyyy-MM-dd") Date endDate) {
|
||||
logger.info("---按日期段下载");
|
||||
return deviceSyncService.downloadUdi(startDate, endDate);
|
||||
}
|
||||
@AuthRuleAnnotation("udidl_udidlDevice_all")
|
||||
@GetMapping("udidl/device/dlByDay")
|
||||
public String dlByDay(String day) {
|
||||
logger.info(day + "---按天开启下载");
|
||||
deviceSyncService.downloadUdi(day,"manual");
|
||||
//asyncDownloadTask.downloadByDay(day);
|
||||
return "ok";
|
||||
}
|
||||
@AuthRuleAnnotation("udidl_udidlDevice_all")
|
||||
@PostMapping("udidl/device/dlByDi")
|
||||
public BaseResponse downloadByDi(String deviceId) {
|
||||
return deviceSyncService.downloadByDi(deviceId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取产品标识详情
|
||||
*
|
||||
* @param deviceId
|
||||
* @return
|
||||
*/
|
||||
@AuthRuleAnnotation("udidl_udidlDevice_all")
|
||||
@PostMapping("udidl/device/downloadSingle")
|
||||
public BaseResponse downloadSingle(String deviceId) {
|
||||
return deviceSyncService.downloadSingle(deviceId);
|
||||
}
|
||||
@AuthRuleAnnotation("udidl_udidlDevice_all")
|
||||
@PostMapping("udidl/device/downloadHistory")
|
||||
public BaseResponse downloadHistory(String key) {
|
||||
return deviceSyncService.downloadHistory(key);
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package com.glxp.udidl.admin.controller.udplat;
|
||||
|
||||
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
import com.glxp.udidl.common.util.ResultVOUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("udplat/goods")
|
||||
public class UdplatGoodsController {
|
||||
@Autowired
|
||||
private UdplatGoodsService udplatGoodsService;
|
||||
|
||||
@AuthRuleAnnotation("udidl_udplatGoods_all")
|
||||
@PostMapping("/inport")
|
||||
public BaseResponse importExcel(MultipartFile file,int type){
|
||||
try
|
||||
{
|
||||
return udplatGoodsService.importExcel(file.getInputStream(),type);
|
||||
}catch (Exception e){
|
||||
return ResultVOUtils.error(-1,e.getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.glxp.udidl.admin.dao.sys;
|
||||
|
||||
import com.glxp.udidl.admin.entity.sys.SysMenu;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface SysMenuMapper {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(SysMenu record);
|
||||
|
||||
SysMenu selectByPrimaryKey(Integer id);
|
||||
|
||||
List<SysMenu> selectAll();
|
||||
|
||||
int updateByPrimaryKey(SysMenu record);
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.glxp.udidl.admin.dao.sys;
|
||||
|
||||
import com.glxp.udidl.admin.entity.sys.SysRole;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface SysRoleMapper {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(SysRole record);
|
||||
|
||||
SysRole selectByPrimaryKey(Integer id);
|
||||
|
||||
List<SysRole> selectAll();
|
||||
|
||||
int updateByPrimaryKey(SysRole record);
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.glxp.udidl.admin.dao.sys;
|
||||
|
||||
import com.glxp.udidl.admin.entity.sys.SysRoleMenu;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface SysRoleMenuMapper {
|
||||
int insert(SysRoleMenu record);
|
||||
|
||||
List<SysRoleMenu> selectAll();
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
package com.glxp.udidl.admin.dao.sys;
|
||||
|
||||
import com.glxp.udidl.admin.entity.sys.SysUser;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface SysUserMapper {
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
|
||||
int insert(SysUser record);
|
||||
|
||||
SysUser selectByPrimaryKey(Integer id);
|
||||
|
||||
List<SysUser> selectAll();
|
||||
|
||||
int updateByPrimaryKey(SysUser record);
|
||||
int hasAuthPerms(@Param("userKey") String user_key, @Param("perms" ) String perms);
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package com.glxp.udidl.admin.dao.udplat;
|
||||
|
||||
import com.glxp.udidl.admin.entity.udplat.UdplatGoods;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface UdplatGoodsMapper {
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(UdplatGoods record);
|
||||
|
||||
UdplatGoods selectByGoodId(String deliveryGoodId);
|
||||
|
||||
List<UdplatGoods> selectAll();
|
||||
|
||||
int update(UdplatGoods record);
|
||||
}
|
@ -0,0 +1,76 @@
|
||||
package com.glxp.udidl.admin.entity.sys;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author hong
|
||||
* @date 2022/01/17
|
||||
*/
|
||||
public class SysRole {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 角色名称
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 角色代码
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 状态0: 启用,1: 禁用
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package com.glxp.udidl.admin.entity.sys;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author hong
|
||||
* @date 2022/01/17
|
||||
*/
|
||||
public class SysRoleMenu {
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer roleId;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Integer menuId;
|
||||
|
||||
public Integer getRoleId() {
|
||||
return roleId;
|
||||
}
|
||||
|
||||
public void setRoleId(Integer roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
public Integer getMenuId() {
|
||||
return menuId;
|
||||
}
|
||||
|
||||
public void setMenuId(Integer menuId) {
|
||||
this.menuId = menuId;
|
||||
}
|
||||
}
|
@ -0,0 +1,102 @@
|
||||
package com.glxp.udidl.admin.entity.sys;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author hong
|
||||
* @date 2022/01/17
|
||||
*/
|
||||
public class SysUser {
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 用户key, 登录用
|
||||
*/
|
||||
private String userKey;
|
||||
|
||||
/**
|
||||
* 用户账号
|
||||
*/
|
||||
private String userName;
|
||||
|
||||
/**
|
||||
* 用户昵称
|
||||
*/
|
||||
private String nickName;
|
||||
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
private String password;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 角色ID
|
||||
*/
|
||||
private Integer roleId;
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
@ -0,0 +1,74 @@
|
||||
package com.glxp.udidl.admin.service.udplat.impl;
|
||||
|
||||
import com.glxp.udidl.admin.dao.udplat.UdplatGoodsMapper;
|
||||
import com.glxp.udidl.admin.dto.udplat.DeliveryGoods;
|
||||
import com.glxp.udidl.admin.dto.udplat.HospitalGoods;
|
||||
import com.glxp.udidl.admin.entity.udplat.UdplatGoods;
|
||||
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
|
||||
import com.glxp.udidl.admin.util.BeanUtils;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
import com.glxp.udidl.common.util.ExcelUtil;
|
||||
import com.glxp.udidl.common.util.ResultVOUtils;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
@Slf4j
|
||||
public class UdplatGoodsServiceImpl implements UdplatGoodsService {
|
||||
@Autowired
|
||||
private UdplatGoodsMapper udplatGoodsMapper;
|
||||
@Override
|
||||
public BaseResponse importExcel(InputStream is, int type) {
|
||||
List<UdplatGoods> list;
|
||||
try{
|
||||
if(type == 1) {
|
||||
List<HospitalGoods> list1 = getData1(is);
|
||||
list = BeanUtils.convertList2List(list1,UdplatGoods.class);
|
||||
}else
|
||||
if(type == 2){
|
||||
List<DeliveryGoods> list2 = getData2(is);
|
||||
//log.info(JSONUtil.toJsonStr(list2));
|
||||
list = BeanUtils.convertList2List(list2,UdplatGoods.class);
|
||||
}else
|
||||
return ResultVOUtils.error(-1,"文件类型不匹配!");
|
||||
return save(list);
|
||||
}catch (Exception e){
|
||||
return ResultVOUtils.error(-1,"转换格式出错:"+e.getMessage());
|
||||
}
|
||||
|
||||
//return ResultVOUtils.success();
|
||||
}
|
||||
private List<HospitalGoods> getData1(InputStream is) throws Exception{
|
||||
ExcelUtil<HospitalGoods> util = new ExcelUtil(HospitalGoods.class);
|
||||
return util.importExcel(is);
|
||||
}
|
||||
private List<DeliveryGoods> getData2(InputStream is) throws Exception{
|
||||
ExcelUtil<DeliveryGoods> util = new ExcelUtil(DeliveryGoods.class);
|
||||
return util.importExcel(is);
|
||||
}
|
||||
private BaseResponse save(List<UdplatGoods> list){
|
||||
if(list == null || list.size()<1)
|
||||
return ResultVOUtils.error(-1,"无数据!");
|
||||
//log.info("数据:"+JSONUtil.toJsonStr(list));
|
||||
int count=0;
|
||||
for(UdplatGoods item:list){
|
||||
String goodId = item.getDeliveryGoodId();
|
||||
if(goodId == null || goodId.isEmpty())
|
||||
continue;
|
||||
UdplatGoods goods = udplatGoodsMapper.selectByGoodId(goodId);
|
||||
if(goods != null)
|
||||
{
|
||||
BeanUtils.copyProperties(item,goods);
|
||||
udplatGoodsMapper.update(goods);
|
||||
}else
|
||||
item.setUuid(BeanUtils.getUUId());
|
||||
udplatGoodsMapper.insert(item);
|
||||
count++;
|
||||
}
|
||||
return ResultVOUtils.success(count);
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package com.glxp.udidl.admin.util;
|
||||
|
||||
import org.springframework.util.CollectionUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
public class BeanUtils extends org.springframework.beans.BeanUtils{
|
||||
/**
|
||||
* list复制
|
||||
* @param input
|
||||
* @param clzz
|
||||
* @param <E>
|
||||
* @param <T>
|
||||
* @return
|
||||
*/
|
||||
public static <E,T> List<T> convertList2List(List<E> input, Class<T> clzz){
|
||||
List<T> output = new ArrayList<>();
|
||||
if(!CollectionUtils.isEmpty(input)){
|
||||
for(E source:input){
|
||||
T target = org.springframework.beans.BeanUtils.instantiate(clzz);
|
||||
org.springframework.beans.BeanUtils.copyProperties(source,target);
|
||||
output.add(target);
|
||||
}
|
||||
}
|
||||
return output;
|
||||
}
|
||||
public static String getUUId() {
|
||||
UUID uuid = UUID.randomUUID();
|
||||
return uuid.toString().replace("-", "");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
<?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.glxp.udidl.admin.dao.sys.SysMenuMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysMenu">
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="parent_id" jdbcType="INTEGER" property="parentId" />
|
||||
<result column="type" jdbcType="CHAR" property="type" />
|
||||
<result column="perms" jdbcType="VARCHAR" property="perms" />
|
||||
<result column="status" jdbcType="CHAR" property="status" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete from sys_menu
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysMenu">
|
||||
insert into sys_menu (id, name, parent_id,
|
||||
type, perms, status, create_time
|
||||
)
|
||||
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{parentId,jdbcType=INTEGER},
|
||||
#{type,jdbcType=CHAR}, #{perms,jdbcType=VARCHAR}, #{status,jdbcType=CHAR}, #{createTime,jdbcType=TIMESTAMP}
|
||||
)
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysMenu">
|
||||
update sys_menu
|
||||
set name = #{name,jdbcType=VARCHAR},
|
||||
parent_id = #{parentId,jdbcType=INTEGER},
|
||||
type = #{type,jdbcType=CHAR},
|
||||
perms = #{perms,jdbcType=VARCHAR},
|
||||
status = #{status,jdbcType=CHAR},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select id, name, parent_id, type, perms, status, create_time
|
||||
from sys_menu
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, name, parent_id, type, perms, status, create_time
|
||||
from sys_menu
|
||||
</select>
|
||||
</mapper>
|
@ -0,0 +1,38 @@
|
||||
<?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.glxp.udidl.admin.dao.sys.SysRoleMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="name" jdbcType="VARCHAR" property="name" />
|
||||
<result column="code" jdbcType="VARCHAR" property="code" />
|
||||
<result column="status" jdbcType="CHAR" property="status" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete from sys_role
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
insert into sys_role (id, name, code,
|
||||
status, create_time)
|
||||
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR},
|
||||
#{status,jdbcType=CHAR}, #{createTime,jdbcType=TIMESTAMP})
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysRole">
|
||||
update sys_role
|
||||
set name = #{name,jdbcType=VARCHAR},
|
||||
code = #{code,jdbcType=VARCHAR},
|
||||
status = #{status,jdbcType=CHAR},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select id, name, code, status, create_time
|
||||
from sys_role
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, name, code, status, create_time
|
||||
from sys_role
|
||||
</select>
|
||||
</mapper>
|
@ -0,0 +1,16 @@
|
||||
<?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.glxp.udidl.admin.dao.sys.SysRoleMenuMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysRoleMenu">
|
||||
<result column="role_id" jdbcType="INTEGER" property="roleId" />
|
||||
<result column="menu_id" jdbcType="INTEGER" property="menuId" />
|
||||
</resultMap>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysRoleMenu">
|
||||
insert into sys_role_menu (role_id, menu_id)
|
||||
values (#{roleId,jdbcType=INTEGER}, #{menuId,jdbcType=INTEGER})
|
||||
</insert>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select role_id, menu_id
|
||||
from sys_role_menu
|
||||
</select>
|
||||
</mapper>
|
@ -0,0 +1,50 @@
|
||||
<?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.glxp.udidl.admin.dao.sys.SysUserMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.sys.SysUser">
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="user_key" jdbcType="VARCHAR" property="userKey" />
|
||||
<result column="user_name" jdbcType="VARCHAR" property="userName" />
|
||||
<result column="nick_name" jdbcType="VARCHAR" property="nickName" />
|
||||
<result column="password" jdbcType="VARCHAR" property="password" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="role_id" jdbcType="INTEGER" property="roleId" />
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete from sys_user
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.sys.SysUser">
|
||||
insert into sys_user (id, user_key, user_name,
|
||||
nick_name, password, create_time,
|
||||
role_id)
|
||||
values (#{id,jdbcType=INTEGER}, #{userKey,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
|
||||
#{nickName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
|
||||
#{roleId,jdbcType=INTEGER})
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.sys.SysUser">
|
||||
update sys_user
|
||||
set user_key = #{userKey,jdbcType=VARCHAR},
|
||||
user_name = #{userName,jdbcType=VARCHAR},
|
||||
nick_name = #{nickName,jdbcType=VARCHAR},
|
||||
password = #{password,jdbcType=VARCHAR},
|
||||
create_time = #{createTime,jdbcType=TIMESTAMP},
|
||||
role_id = #{roleId,jdbcType=INTEGER}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select id, user_key, user_name, nick_name, password, create_time, role_id
|
||||
from sys_user
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, user_key, user_name, nick_name, password, create_time, role_id
|
||||
from sys_user
|
||||
</select>
|
||||
<select id="hasAuthPerms" resultType="java.lang.Integer" >
|
||||
SELECT count(u.id) FROM `sys_user` as u LEFT JOIN sys_role r on u.role_id=r.id
|
||||
LEFT JOIN sys_role_menu rm on r.id=rm.role_id
|
||||
LEFT JOIN sys_menu m on rm.menu_id=m.id
|
||||
where u.user_key= #{userKey,jdbcType=VARCHAR} and m.perms= #{perms,jdbcType=VARCHAR}
|
||||
</select>
|
||||
</mapper>
|
@ -0,0 +1,122 @@
|
||||
<?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.glxp.udidl.admin.dao.udplat.UdplatGoodsMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoods">
|
||||
<id column="id" jdbcType="BIGINT" property="id" />
|
||||
<result column="uuid" jdbcType="VARCHAR" property="uuid" />
|
||||
<result column="deliveryGoodId" jdbcType="VARCHAR" property="deliveryGoodId" />
|
||||
<result column="projectGoodsCode" jdbcType="VARCHAR" property="projectGoodsCode" />
|
||||
<result column="deliveryGoodsCode" jdbcType="VARCHAR" property="deliveryGoodsCode" />
|
||||
<result column="manufactureId" jdbcType="BIGINT" property="manufactureId" />
|
||||
<result column="manufactureName" jdbcType="VARCHAR" property="manufactureName" />
|
||||
<result column="distributorId" jdbcType="BIGINT" property="distributorId" />
|
||||
<result column="distributorName" jdbcType="VARCHAR" property="distributorName" />
|
||||
<result column="productName" jdbcType="VARCHAR" property="productName" />
|
||||
<result column="compId" jdbcType="BIGINT" property="compId" />
|
||||
<result column="model" jdbcType="VARCHAR" property="model" />
|
||||
<result column="spec" jdbcType="VARCHAR" property="spec" />
|
||||
<result column="prodMaterial" jdbcType="VARCHAR" property="prodMaterial" />
|
||||
<result column="packMaterial" jdbcType="VARCHAR" property="packMaterial" />
|
||||
<result column="regNum" jdbcType="VARCHAR" property="regNum" />
|
||||
<result column="regName" jdbcType="VARCHAR" property="regName" />
|
||||
<result column="regValidTo" jdbcType="VARCHAR" property="regValidTo" />
|
||||
<result column="unionProjectId" jdbcType="BIGINT" property="unionProjectId" />
|
||||
<result column="unionProjectName" jdbcType="VARCHAR" property="unionProjectName" />
|
||||
<result column="salePrice" jdbcType="DECIMAL" property="salePrice" />
|
||||
<result column="priceUnitText" jdbcType="VARCHAR" property="priceUnitText" />
|
||||
<result column="topSalePrice" jdbcType="DECIMAL" property="topSalePrice" />
|
||||
<result column="settlePayPrice" jdbcType="DECIMAL" property="settlePayPrice" />
|
||||
<result column="goodsSource" jdbcType="INTEGER" property="goodsSource" />
|
||||
<result column="stockStatus" jdbcType="INTEGER" property="stockStatus" />
|
||||
<result column="changedContent" jdbcType="VARCHAR" property="changedContent" />
|
||||
<result column="changedTime" jdbcType="TIMESTAMP" property="changedTime" />
|
||||
<result column="proxyName" jdbcType="VARCHAR" property="proxyName" />
|
||||
<result column="onlineStatus" jdbcType="INTEGER" property="onlineStatus" />
|
||||
<result column="medicalCode" jdbcType="VARCHAR" property="medicalCode" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
||||
delete from udplat_goods
|
||||
where id = #{id,jdbcType=BIGINT}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoods">
|
||||
insert into udplat_goods (id, uuid, deliveryGoodId,
|
||||
projectGoodsCode, deliveryGoodsCode, manufactureId,
|
||||
manufactureName, distributorId, distributorName,
|
||||
productName, compId, model,
|
||||
spec, prodMaterial, packMaterial,
|
||||
regNum, regName, regValidTo,
|
||||
unionProjectId, unionProjectName, salePrice,
|
||||
priceUnitText, topSalePrice, settlePayPrice,
|
||||
goodsSource, stockStatus, changedContent,
|
||||
changedTime, proxyName, onlineStatus,
|
||||
medicalCode, createTime
|
||||
)
|
||||
values (#{id,jdbcType=BIGINT}, #{uuid,jdbcType=VARCHAR}, #{deliveryGoodId,jdbcType=VARCHAR},
|
||||
#{projectGoodsCode,jdbcType=VARCHAR}, #{deliveryGoodsCode,jdbcType=VARCHAR}, #{manufactureId,jdbcType=BIGINT},
|
||||
#{manufactureName,jdbcType=VARCHAR}, #{distributorId,jdbcType=BIGINT}, #{distributorName,jdbcType=VARCHAR},
|
||||
#{productName,jdbcType=VARCHAR}, #{compId,jdbcType=BIGINT}, #{model,jdbcType=VARCHAR},
|
||||
#{spec,jdbcType=VARCHAR}, #{prodMaterial,jdbcType=VARCHAR}, #{packMaterial,jdbcType=VARCHAR},
|
||||
#{regNum,jdbcType=VARCHAR}, #{regName,jdbcType=VARCHAR}, #{regValidTo,jdbcType=VARCHAR},
|
||||
#{unionProjectId,jdbcType=BIGINT}, #{unionProjectName,jdbcType=VARCHAR}, #{salePrice,jdbcType=DECIMAL},
|
||||
#{priceUnitText,jdbcType=VARCHAR}, #{topSalePrice,jdbcType=DECIMAL}, #{settlePayPrice,jdbcType=DECIMAL},
|
||||
#{goodsSource,jdbcType=INTEGER}, #{stockStatus,jdbcType=VARCHAR}, #{changedContent,jdbcType=VARCHAR},
|
||||
#{changedTime,jdbcType=TIMESTAMP}, #{proxyName,jdbcType=VARCHAR}, #{onlineStatus,jdbcType=INTEGER},
|
||||
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
|
||||
)
|
||||
</insert>
|
||||
<update id="update" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoods">
|
||||
update udplat_goods
|
||||
set uuid = #{uuid,jdbcType=VARCHAR},
|
||||
deliveryGoodId = #{deliveryGoodId,jdbcType=VARCHAR},
|
||||
projectGoodsCode = #{projectGoodsCode,jdbcType=VARCHAR},
|
||||
deliveryGoodsCode = #{deliveryGoodsCode,jdbcType=VARCHAR},
|
||||
manufactureId = #{manufactureId,jdbcType=BIGINT},
|
||||
manufactureName = #{manufactureName,jdbcType=VARCHAR},
|
||||
distributorId = #{distributorId,jdbcType=BIGINT},
|
||||
distributorName = #{distributorName,jdbcType=VARCHAR},
|
||||
productName = #{productName,jdbcType=VARCHAR},
|
||||
compId = #{compId,jdbcType=BIGINT},
|
||||
model = #{model,jdbcType=VARCHAR},
|
||||
spec = #{spec,jdbcType=VARCHAR},
|
||||
prodMaterial = #{prodMaterial,jdbcType=VARCHAR},
|
||||
packMaterial = #{packMaterial,jdbcType=VARCHAR},
|
||||
regNum = #{regNum,jdbcType=VARCHAR},
|
||||
regName = #{regName,jdbcType=VARCHAR},
|
||||
regValidTo = #{regValidTo,jdbcType=VARCHAR},
|
||||
unionProjectId = #{unionProjectId,jdbcType=BIGINT},
|
||||
unionProjectName = #{unionProjectName,jdbcType=VARCHAR},
|
||||
salePrice = #{salePrice,jdbcType=DECIMAL},
|
||||
priceUnitText = #{priceUnitText,jdbcType=VARCHAR},
|
||||
topSalePrice = #{topSalePrice,jdbcType=DECIMAL},
|
||||
settlePayPrice = #{settlePayPrice,jdbcType=DECIMAL},
|
||||
goodsSource = #{goodsSource,jdbcType=INTEGER},
|
||||
stockStatus = #{stockStatus,jdbcType=VARCHAR},
|
||||
changedContent = #{changedContent,jdbcType=VARCHAR},
|
||||
changedTime = #{changedTime,jdbcType=TIMESTAMP},
|
||||
proxyName = #{proxyName,jdbcType=VARCHAR},
|
||||
onlineStatus = #{onlineStatus,jdbcType=INTEGER},
|
||||
medicalCode = #{medicalCode,jdbcType=VARCHAR},
|
||||
createTime = #{createTime,jdbcType=TIMESTAMP},
|
||||
updateTime = #{updateTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=BIGINT}
|
||||
</update>
|
||||
<select id="selectByGoodId" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select id, uuid, deliveryGoodId, projectGoodsCode, deliveryGoodsCode, manufactureId,
|
||||
manufactureName, distributorId, distributorName, productName, compId, model, spec,
|
||||
prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName,
|
||||
salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus,
|
||||
changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime
|
||||
from udplat_goods
|
||||
where deliveryGoodId = #{deliveryGoodId}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, uuid, deliveryGoodId, projectGoodsCode, deliveryGoodsCode, manufactureId,
|
||||
manufactureName, distributorId, distributorName, productName, compId, model, spec,
|
||||
prodMaterial, packMaterial, regNum, regName, regValidTo, unionProjectId, unionProjectName,
|
||||
salePrice, priceUnitText, topSalePrice, settlePayPrice, goodsSource, stockStatus,
|
||||
changedContent, changedTime, proxyName, onlineStatus, medicalCode, createTime, updateTime
|
||||
from udplat_goods
|
||||
</select>
|
||||
</mapper>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@
|
||||
package com.glxp.udidl.common.util;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class DateUtils extends cn.hutool.core.date.DateUtil{
|
||||
/**
|
||||
* 日期型字符串转化为日期 格式
|
||||
*/
|
||||
public static Date parseDate(Object str) {
|
||||
if (str == null) {
|
||||
return null;
|
||||
}
|
||||
return parse(str.toString());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue