1.添加单据类型,补单单据类型,第三方单据类型,转单设置相关实体类和接口代码

master
x_z 2 years ago
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,113 @@
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_change")
public class BasicBusTypeChangeEntity {
/**
* id
*/
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "originAction")
private String originAction;
/**
*
*/
@TableField(value = "originName")
private String originName;
/**
*
*/
@TableField(value = "targetAction")
private String targetAction;
/**
* 1:2.3.
*/
@TableField(value = "`type`")
private Boolean type;
/**
* 0:1:
*/
@TableField(value = "`enable`")
private Boolean enable;
/**
*
*/
@TableField(value = "systemDefault")
private Boolean systemDefault;
/**
*
*/
@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_ORIGINACTION = "originAction";
public static final String COL_ORIGINNAME = "originName";
public static final String COL_TARGETACTION = "targetAction";
public static final String COL_TYPE = "type";
public static final String COL_ENABLE = "enable";
public static final String COL_SYSTEMDEFAULT = "systemDefault";
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,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,276 @@
package com.glxp.api.entity.basic;
import lombok.Data;
import java.util.Date;
/**
*
*/
@Data
public class BasicBussinessTypeEntity {
/**
* id
*/
private Integer id;
/**
*
*/
private String mainAction;
/**
*
*/
private String action;
/**
*
*/
private String name;
/**
*
*/
private Boolean enable;
/**
*
*/
private String remark;
/**
*
*/
private String thirdSysFk;
/**
* 1.2.
*/
private Boolean genUnit;
/**
* 1.0
*/
private Boolean innerOrder;
/**
*
*/
private Boolean secCheckEnable;
/**
*
*/
private Boolean checkEnable;
/**
* UDIMS
*/
private Boolean checkUdims;
/**
* pda
*/
private Boolean checkPdaEd;
/**
* pda
*/
private Boolean checkPdaUn;
/**
* PC
*/
private Boolean checkPc;
/**
* web
*/
private Boolean checkWebNew;
/**
*
*/
private Boolean checkSp;
/**
*
*/
private Boolean checkChange;
/**
* UDIMS
*/
private Boolean secCheckUdims;
/**
*
*/
private Boolean secCheckPdaEd;
/**
*
*/
private Boolean secCheckPdaUn;
/**
* UDI
*/
private Boolean secCheckPc;
/**
* web
*/
private Boolean secCheckWebNew;
/**
*
*/
private Boolean secCheckChange;
/**
*
*/
private Boolean secCheckSp;
/**
*
*/
private Boolean corpType;
/**
*
*/
private String supplementOrderType;
/**
*
*/
private Boolean checkBalance;
/**
*
*/
private Boolean secCheckBalance;
/**
* 使
*/
private Boolean useDyCount;
/**
*
*/
private Boolean expireTip;
/**
*
*/
private Date updateTime;
/**
*
*/
private String defaultUnit;
/**
*
*/
private String prefix;
/**
*
*/
private Boolean outToSpms;
/**
*
*/
private Boolean ullageFill;
/**
*
*/
private Boolean scanPreIn;
/**
* 访
*/
private Boolean vailInv;
/**
*
*/
private Boolean entrutSpms;
/**
*
*/
private Boolean codeFillCheck;
/**
*
*/
private String defaultSubInv;
/**
*
*/
private String defaultInv;
/**
* 01:
*/
private Boolean orderVisibleType;
/**
*
*/
private Boolean checkCopy;
/**
*
*/
private Boolean secCheckCopy;
/**
*
*/
private String originAction;
/**
*
*/
private Boolean advanceType;
/**
*
*/
private Boolean changeEnable;
/**
* 使
*/
private Boolean spUse;
/**
*
*/
private Boolean preIn;
/**
*
*/
private Boolean supplementAll;
/**
*
*/
private String createUser;
/**
*
*/
private Date createTime;
}

@ -0,0 +1,113 @@
package com.glxp.api.entity.thrsys;
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 = "thr_bustype_origin")
public class ThrBusTypeOriginEntity {
/**
* id
*/
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "`action`")
private String action;
/**
*
*/
@TableField(value = "thirdSys")
private String thirdSys;
/**
*
*/
@TableField(value = "thirdSysName")
private String thirdSysName;
/**
* 0:1:
*/
@TableField(value = "`enable`")
private Boolean enable;
/**
*
*/
@TableField(value = "inoutType")
private Integer inoutType;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
*
*/
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "`createUser`")
private String createUser;
/**
*
*/
@TableField(value = "updateUser")
private String updateUser;
/**
*
*/
@TableField(value = "createTime")
private Date createTime;
public static final String COL_ID = "id";
public static final String COL_NAME = "name";
public static final String COL_ACTION = "action";
public static final String COL_THIRDSYS = "thirdSys";
public static final String COL_THIRDSYSNAME = "thirdSysName";
public static final String COL_ENABLE = "enable";
public static final String COL_INOUTTYPE = "inoutType";
public static final String COL_UPDATETIME = "updateTime";
public static final String COL_REMARK = "remark";
public static final String COL_CREATEUSER = "createUser";
public static final String COL_UPDATEUSER = "updateUser";
public static final String COL_CREATETIME = "createTime";
}

@ -0,0 +1,107 @@
package com.glxp.api.req.basic;
import com.glxp.api.req.ListPageRequest;
import lombok.Data;
import java.util.List;
/**
*
*/
@Data
public class FilterBussinessTypeRequest extends ListPageRequest {
/**
*
*/
private Boolean enable;
/**
*
*/
private String action;
/**
*
*/
private String thirdAction;
/**
*
*/
private String name;
/**
*
*/
private String mainAction;
/**
*
*/
private Boolean enabled;
/**
*
*/
private Boolean checkEnable;
/**
*
*/
private Boolean advanceType;
private String type;
/**
* 使
*/
private Boolean spUse;
/**
*
*/
private Boolean secCheckEnable;
/**
* ID
*/
private Integer userId;
/**
*
*/
private String locInvCode;
/**
*
*/
private String locSubInvCode;
/**
*
*/
private String lastUpdateTime;
/**
*
*/
private String code;
/**
* ID
*/
private String ids;
/**
*
*/
private List<String> actionList;
/**
*
*/
private Boolean preIn;
}

@ -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…
Cancel
Save