1.添加单据类型,补单单据类型,第三方单据类型,转单设置相关实体类和接口代码
parent
cb205b0361
commit
6a79144a39
@ -0,0 +1,15 @@
|
|||||||
|
package com.glxp.api.controller.basic;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据转换设置接口
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
public class BasicBusTypeChangeController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package com.glxp.api.controller.basic;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单单据类型接口
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
public class BasicBusTypePreController {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
package com.glxp.api.controller.basic;
|
||||||
|
|
||||||
|
import com.glxp.api.service.basic.IBasicBussinessTypeService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型接口
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
public class BasicBussinessTypeController {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private IBasicBussinessTypeService basicBussinessTypeService;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package com.glxp.api.controller.thrsys;
|
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方单据类型接口
|
||||||
|
*/
|
||||||
|
@Slf4j
|
||||||
|
@RestController
|
||||||
|
public class ThrBusTypeOriginController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.dao.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.api.entity.basic.BasicBusTypeChangeEntity;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据转换表查询接口
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface BasicBusTypeChangeDao extends BaseMapper<BasicBusTypeChangeEntity> {
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package com.glxp.api.dao.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.api.entity.basic.BasicBusTypePreEntity;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单单据类型查询接口
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface BasicBusTypePreDao extends BaseMapper<BasicBusTypePreEntity> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
package com.glxp.api.dao.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.api.entity.basic.BasicBussinessTypeEntity;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface BasicBussinessTypeDao extends BaseMapper<BasicBussinessTypeEntity> {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package com.glxp.api.dao.thrsys;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.glxp.api.entity.thrsys.ThrBusTypeOriginEntity;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方单据类型表查询接口
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface ThrBusTypeOriginDao extends BaseMapper<ThrBusTypeOriginEntity> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,161 @@
|
|||||||
|
package com.glxp.api.entity.basic;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单单据类型实体类
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@TableName(value = "basic_bustype_pre")
|
||||||
|
public class BasicBusTypePreEntity {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* id
|
||||||
|
*/
|
||||||
|
@TableId(value = "id", type = IdType.INPUT)
|
||||||
|
private Integer id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 说明
|
||||||
|
*/
|
||||||
|
@TableField(value = "intro")
|
||||||
|
private String intro;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型
|
||||||
|
*/
|
||||||
|
@TableField(value = "`action`")
|
||||||
|
private String action;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 转换扫码单序号
|
||||||
|
*/
|
||||||
|
@TableField(value = "`index`")
|
||||||
|
private Byte index;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 往前推移几天(单位:小时)
|
||||||
|
*/
|
||||||
|
@TableField(value = "beforeTime")
|
||||||
|
private Integer beforeTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 类型
|
||||||
|
*/
|
||||||
|
@TableField(value = "changeType")
|
||||||
|
private Boolean changeType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单默认仓库
|
||||||
|
*/
|
||||||
|
@TableField(value = "defaultInv")
|
||||||
|
private String defaultInv;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单默认分库
|
||||||
|
*/
|
||||||
|
@TableField(value = "defaultSubInv")
|
||||||
|
private String defaultSubInv;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单当前仓库
|
||||||
|
*/
|
||||||
|
@TableField(value = "locInv")
|
||||||
|
private String locInv;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单当前分库
|
||||||
|
*/
|
||||||
|
@TableField(value = "locSubInv")
|
||||||
|
private String locSubInv;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 原单据类型
|
||||||
|
*/
|
||||||
|
@TableField(value = "originAction")
|
||||||
|
private String originAction;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否自动补单
|
||||||
|
*/
|
||||||
|
@TableField(value = "changeEnable")
|
||||||
|
private Byte changeEnable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 是否全量补单
|
||||||
|
*/
|
||||||
|
@TableField(value = "supplementAll")
|
||||||
|
private Boolean supplementAll;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
@TableField(value = "`createUser`")
|
||||||
|
private String createUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新人
|
||||||
|
*/
|
||||||
|
@TableField(value = "updateUser")
|
||||||
|
private String updateUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
@TableField(value = "createTime")
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新时间
|
||||||
|
*/
|
||||||
|
@TableField(value = "updateTime")
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 备注
|
||||||
|
*/
|
||||||
|
@TableField(value = "remark")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
public static final String COL_ID = "id";
|
||||||
|
|
||||||
|
public static final String COL_INTRO = "intro";
|
||||||
|
|
||||||
|
public static final String COL_ACTION = "action";
|
||||||
|
|
||||||
|
public static final String COL_INDEX = "index";
|
||||||
|
|
||||||
|
public static final String COL_BEFORETIME = "beforeTime";
|
||||||
|
|
||||||
|
public static final String COL_CHANGETYPE = "changeType";
|
||||||
|
|
||||||
|
public static final String COL_DEFAULTINV = "defaultInv";
|
||||||
|
|
||||||
|
public static final String COL_DEFAULTSUBINV = "defaultSubInv";
|
||||||
|
|
||||||
|
public static final String COL_LOCINV = "locInv";
|
||||||
|
|
||||||
|
public static final String COL_LOCSUBINV = "locSubInv";
|
||||||
|
|
||||||
|
public static final String COL_ORIGINACTION = "originAction";
|
||||||
|
|
||||||
|
public static final String COL_CHANGEENABLE = "changeEnable";
|
||||||
|
|
||||||
|
public static final String COL_SUPPLEMENTALL = "supplementAll";
|
||||||
|
|
||||||
|
public static final String COL_CREATEUSER = "createUser";
|
||||||
|
|
||||||
|
public static final String COL_UPDATEUSER = "updateUser";
|
||||||
|
|
||||||
|
public static final String COL_CREATETIME = "createTime";
|
||||||
|
|
||||||
|
public static final String COL_UPDATETIME = "updateTime";
|
||||||
|
|
||||||
|
public static final String COL_REMARK = "remark";
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.glxp.api.res.basic;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型响应VO
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class BasicBussinessTypeResponse {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.service.basic;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据转换设置Service
|
||||||
|
*/
|
||||||
|
public interface IBasicBusTypeChangeService {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.service.basic;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 补单单据类型Service
|
||||||
|
*/
|
||||||
|
public interface IBasicBusTypePreService {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.service.basic;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单据类型Service
|
||||||
|
*/
|
||||||
|
public interface IBasicBussinessTypeService {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.service.basic.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.service.basic.IBasicBusTypeChangeService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class BasicBusTypeChangeServiceImpl implements IBasicBusTypeChangeService {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.service.basic.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.service.basic.IBasicBusTypePreService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class BasicBusTypePreServiceImpl implements IBasicBusTypePreService {
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.glxp.api.service.basic.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.dao.basic.BasicBussinessTypeDao;
|
||||||
|
import com.glxp.api.service.basic.IBasicBussinessTypeService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
public class BasicBussinessTypeServiceImpl implements IBasicBussinessTypeService {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private BasicBussinessTypeDao basicBussinessTypeDao;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.glxp.api.service.thrsys;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 第三方单据类型Service
|
||||||
|
*/
|
||||||
|
public interface IThrBusTypeOriginService {
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.glxp.api.service.thrsys.impl;
|
||||||
|
|
||||||
|
import com.glxp.api.service.thrsys.IThrBusTypeOriginService;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
|
@Service
|
||||||
|
@Transactional(rollbackFor = Exception.class)
|
||||||
|
public class ThrBusTypeOriginServiceImpl implements IThrBusTypeOriginService {
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
<?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.api.dao.basic.BasicBusTypeChangeDao">
|
||||||
|
|
||||||
|
</mapper>
|
@ -0,0 +1,5 @@
|
|||||||
|
<?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.api.dao.basic.BasicBusTypePreDao">
|
||||||
|
|
||||||
|
</mapper>
|
@ -0,0 +1,7 @@
|
|||||||
|
<?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.api.dao.basic.BasicBussinessTypeDao">
|
||||||
|
|
||||||
|
|
||||||
|
</mapper>
|
@ -0,0 +1,5 @@
|
|||||||
|
<?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.api.dao.thrsys.ThrBusTypeOriginDao">
|
||||||
|
|
||||||
|
</mapper>
|
Loading…
Reference in New Issue