| | |
| | | package com.zy.asrs.wms.asrs.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.zy.asrs.wms.asrs.entity.CacheSite; |
| | | import com.zy.asrs.wms.asrs.entity.param.SeedCompleteParam; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface CacheSiteService extends IService<CacheSite> { |
| | | |
| | | List<String> getChannelList(); |
| | | |
| | | boolean seedCompletePreview(SeedCompleteParam param); |
| | | |
| | | void seedComplete(SeedCompleteParam param); |
| | | |
| | | } |
| | | package com.zy.asrs.wms.asrs.service;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.zy.asrs.wms.asrs.entity.CacheSite;
|
| | | import com.zy.asrs.wms.asrs.entity.param.SeedCompleteParam;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | public interface CacheSiteService extends IService<CacheSite> {
|
| | |
|
| | | List<String> getChannelList();
|
| | |
|
| | | boolean seedCompletePreview(SeedCompleteParam param);
|
| | |
|
| | | void seedComplete(SeedCompleteParam param);
|
| | |
|
| | | }
|