| 12345678910111213141516171819202122 |
- package com.emato.cus.supervise.mapperCus;
- import com.emato.cus.supervise.domainCus.CusAcqInventoryInfo03;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * 货物库存数据 CUS
- * @author Scott Chen
- * @version 1.0
- * 2017-10-28 15:38
- */
- @Repository
- public interface CusAcqInventoryInfoMapper03 {
- /**
- * 货物库存数据
- * @param list
- * @return
- */
- int addAcqInventoryInfo03(List<CusAcqInventoryInfo03> list);
- }
|