Merge branch 'dev' into test
commit
4d5497929a
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsCheckPoint;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsStockQuanSnapshot;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 快照表
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/9/19 14:22
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface IWmsCheckPointRepository extends BaseRepository<WmsCheckPoint,Long> {
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsMoveDetailsSnapshot;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsMoveMasterSnapshot;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 快照表
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/9/19 14:22
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface IWmsMoveDetailsSnapshotRepository extends BaseRepository<WmsMoveDetailsSnapshot,Long> {
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsMoveMasterSnapshot;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsStockSnSnapshot;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 快照表
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/9/19 14:22
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface IWmsMoveMasterSnapshotRepository extends BaseRepository<WmsMoveMasterSnapshot,Long> {
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsMoveDetailsSnapshot;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsMoveSnSnapshot;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 快照表
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/9/19 14:22
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface IWmsMoveSnSnapshotRepository extends BaseRepository<WmsMoveSnSnapshot,Long> {
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsStockQuanSnapshot;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 库存信息快照
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/9/19 14:22
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface IWmsStockQuanSnapshotRepository extends BaseRepository<WmsStockQuanSnapshot,Long> {
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsCheckPoint;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.snapshot.WmsStockSnSnapshot;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 快照表
|
||||||
|
* @Reference :
|
||||||
|
* @author: amy.liu
|
||||||
|
* @date: 2019/9/19 14:22
|
||||||
|
* @Modify:
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface IWmsStockSnSnapshotRepository extends BaseRepository<WmsStockSnSnapshot,Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue