更改库存交易归档表信息和库存表信息
parent
770fe0fa17
commit
9712f75d42
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.StockArea;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsTransType;
|
||||
|
||||
/**
|
||||
* @Description : 库区表
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2018-11-04 12:02
|
||||
* @Modify:
|
||||
**/
|
||||
public interface StockAreaRepository extends BaseRepository<StockArea, Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.StockArea;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.StockLocation;
|
||||
|
||||
/**
|
||||
* @Description : 库位表
|
||||
* @Reference :
|
||||
* @Author : jessica.chen
|
||||
* @CreateDate : 2018-11-04 14:33
|
||||
* @Modify:
|
||||
**/
|
||||
public interface StockLocationRepository extends BaseRepository<StockLocation, Long> {
|
||||
}
|
Loading…
Reference in New Issue