1.调整同步设置业务单据类型代码

master
x_z 2 years ago
parent f2e715bd9a
commit 3f81a88bce

@ -1,7 +1,7 @@
package com.glxp.api.dao.sync;
package com.glxp.api.dao.system;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.sync.SyncDataChangeBustypesEntity;
import com.glxp.api.entity.system.SyncDataChangeBustypesEntity;
public interface SyncDataChangeBustypesDao extends BaseMapper<SyncDataChangeBustypesEntity> {
}

@ -1,4 +1,4 @@
package com.glxp.api.entity.sync;
package com.glxp.api.entity.system;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
@ -23,9 +23,9 @@ public class SyncDataChangeBustypesEntity {
private String name;
@TableField(value = "outChange")
private Byte outChange;
private boolean outChange;
@TableField(value = "orderStatus")
private Byte orderStatus;
private Integer orderStatus;
}

@ -1,6 +1,6 @@
package com.glxp.api.res.system;
import com.glxp.api.entity.sync.SyncDataChangeBustypesEntity;
import com.glxp.api.entity.system.SyncDataChangeBustypesEntity;
import com.glxp.api.entity.system.SyncDataBustypeEntity;
import com.glxp.api.entity.system.SyncDataPurTypeEntity;
import lombok.Data;

@ -1,6 +1,6 @@
package com.glxp.api.service.sync;
import com.glxp.api.entity.sync.SyncDataChangeBustypesEntity;
import com.glxp.api.entity.system.SyncDataChangeBustypesEntity;
import java.util.List;

@ -1,8 +1,8 @@
package com.glxp.api.service.sync.impl;
import cn.hutool.core.collection.CollUtil;
import com.glxp.api.dao.sync.SyncDataChangeBustypesDao;
import com.glxp.api.entity.sync.SyncDataChangeBustypesEntity;
import com.glxp.api.dao.system.SyncDataChangeBustypesDao;
import com.glxp.api.entity.system.SyncDataChangeBustypesEntity;
import com.glxp.api.service.sync.SyncDataChangeBustypeService;
import org.apache.ibatis.session.ExecutorType;
import org.apache.ibatis.session.SqlSession;

@ -1,7 +1,7 @@
package com.glxp.api.service.sync.impl;
import com.glxp.api.dao.system.SyncDataSetDao;
import com.glxp.api.entity.sync.SyncDataChangeBustypesEntity;
import com.glxp.api.entity.system.SyncDataChangeBustypesEntity;
import com.glxp.api.entity.system.SyncDataBustypeEntity;
import com.glxp.api.entity.system.SyncDataSetEntity;
import com.glxp.api.res.system.SyncDataSetResponse;

@ -1,7 +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.sync.SyncDataChangeBustypesDao">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.sync.SyncDataChangeBustypesEntity">
<mapper namespace="com.glxp.api.dao.system.SyncDataChangeBustypesDao">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.system.SyncDataChangeBustypesEntity">
<!--@mbg.generated-->
<!--@Table sync_data_change_bustypes-->
<id column="id" jdbcType="INTEGER" property="id" />
Loading…
Cancel
Save