项目结构调整
parent
0634674c83
commit
1917c01c09
@ -0,0 +1,20 @@
|
||||
package cn.estsh.i3plus.pojo.wms.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsSnPrint;
|
||||
import cn.estsh.i3plus.pojo.wms.bean.WmsTransCode;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description : 打印机队列数据操作类
|
||||
* @Reference :
|
||||
* @Author : silliter.yuan
|
||||
* @CreateDate : 2018-11-17 14:47
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface WmsSnPrintRepository extends BaseRepository<WmsSnPrint, Long> {
|
||||
|
||||
}
|
Loading…
Reference in New Issue