库存问题
parent
8f0d7bf6dd
commit
7542711f97
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.dao.inout;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.entity.inout.IoSplitFifoInv;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface IoSplitFifoInvMapper extends BaseMapper<IoSplitFifoInv> {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package com.glxp.api.service.inout;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import javax.annotation.Resource;
|
||||
import java.util.List;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.glxp.api.entity.inout.IoSplitFifoInv;
|
||||
import com.glxp.api.dao.inout.IoSplitFifoInvMapper;
|
||||
|
||||
@Service
|
||||
public class IoSplitFifoInvService extends ServiceImpl<IoSplitFifoInvMapper, IoSplitFifoInv> {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,29 @@
|
||||
<?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.inout.IoSplitFifoInvMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.api.entity.inout.IoSplitFifoInv">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table io_split_fifo_inv-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="workPlaceCode" jdbcType="VARCHAR" property="workPlaceCode" />
|
||||
<result column="deptCode" jdbcType="VARCHAR" property="deptCode" />
|
||||
<result column="invCode" jdbcType="VARCHAR" property="invCode" />
|
||||
<result column="productType" jdbcType="VARCHAR" property="productType" />
|
||||
<result column="fifoSplit" jdbcType="VARCHAR" property="fifoSplit" />
|
||||
<result column="relId" jdbcType="INTEGER" property="relId" />
|
||||
<result column="batchNo" jdbcType="INTEGER" property="batchNo" />
|
||||
<result column="produceDate" jdbcType="TIMESTAMP" property="produceDate" />
|
||||
<result column="expireDate" jdbcType="TIMESTAMP" property="expireDate" />
|
||||
<result column="supId" jdbcType="INTEGER" property="supId" />
|
||||
<result column="inCount" jdbcType="VARCHAR" property="inCount" />
|
||||
<result column="outCount" jdbcType="VARCHAR" property="outCount" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="remark" jdbcType="VARCHAR" property="remark" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, workPlaceCode, deptCode, invCode, productType, fifoSplit, relId, batchNo, produceDate,
|
||||
expireDate, supId, inCount, outCount, createTime, updateTime, remark
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue