yun-zuoyi
parent
c67fe92297
commit
71a68e8cf6
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.base.util;
|
||||||
|
|
||||||
|
public class StringUtil {
|
||||||
|
|
||||||
|
public static boolean isEmpty(Object obj){
|
||||||
|
|
||||||
|
if(obj ==null || obj.toString().trim().equals("")){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
@ -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.BasVendor;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsZones;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :供应商编码
|
||||||
|
* @Reference :
|
||||||
|
* @Author : libiwei
|
||||||
|
* @CreateDate : 2018-11-06 13:40
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsBasVendorRepository extends BaseRepository<BasVendor,Long> {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue