feat(flow): 添加盘库管理相关实体和服务接口
- 创建盘库差异记录实体类InvCountDiscrepancy及对应的BO、VO - 创建盘库计划主实体类InvCountPlan及对应的BO、VO - 创建盘库计划-库区关联实体类InvCountPlanWarehouse及对应的BO、VO - 实现盘库差异记录的增删改查服务接口IInvCountDiscrepancyService - 实现盘库计划主的增删改查服务接口IInvCountPlanService - 实现盘库计划-库区关联的服务接口IInvCountPlanWarehouseService - 添加对应的控制器InvCountDiscrepancyController和InvCountPlanController - 创建相应的数据库映射文件和XML配置 - 实现服务接口的具体业务逻辑实现类
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?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.klp.flow.mapper.InvCountPlanWarehouseMapper">
|
||||
|
||||
<resultMap type="com.klp.flow.domain.InvCountPlanWarehouse" id="InvCountPlanWarehouseResult">
|
||||
<result property="relId" column="rel_id"/>
|
||||
<result property="planId" column="plan_id"/>
|
||||
<result property="warehouseId" column="warehouse_id"/>
|
||||
<result property="warehouseName" column="warehouse_name"/>
|
||||
<result property="actualWarehouseId" column="actual_warehouse_id"/>
|
||||
<result property="actualWarehouseName" column="actual_warehouse_name"/>
|
||||
<result property="systemCoilCount" column="system_coil_count"/>
|
||||
<result property="systemTotalWeight" column="system_total_weight"/>
|
||||
<result property="actualCoilCount" column="actual_coil_count"/>
|
||||
<result property="actualTotalWeight" column="actual_total_weight"/>
|
||||
<result property="isConsistent" column="is_consistent"/>
|
||||
<result property="ioStartTime" column="io_start_time"/>
|
||||
<result property="ioEndTime" column="io_end_time"/>
|
||||
<result property="snapshotIoRecord" column="snapshot_io_record"/>
|
||||
<result property="snapshotCoilLogic" column="snapshot_coil_logic"/>
|
||||
<result property="snapshotCoilActual" column="snapshot_coil_actual"/>
|
||||
<result property="snapshotCoilStats" column="snapshot_coil_stats"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="remark" column="remark"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user