1234567891011121314151617181920212223242526 |
- package com.steerinfo.dil.service;
- import com.steerinfo.dil.model.WmspInboundStackResult;
- /**
- * @author luobang
- * @create 2021-09-13 15:05
- */
- public interface IWmsInboundStackResultService {
- /**
- * 新增选择垛位实绩
- * @param wmspInboundStackResult
- * @return
- */
- int insertWmsInboundStackResult(WmspInboundStackResult wmspInboundStackResult);
- /**
- * 2.主键ID
- *
- * @return
- */
- int count();
- }
|