3 changed files with 40 additions and 3 deletions
@ -0,0 +1,11 @@ |
|||
package cn.chjyj.szwh.service; |
|||
|
|||
/** |
|||
* 商品定时任务接口 |
|||
*/ |
|||
public interface GoodsTaskService { |
|||
/** |
|||
* 获取撤销委托信息 |
|||
*/ |
|||
public void getRevocationGoods(); |
|||
} |
|||
@ -0,0 +1,13 @@ |
|||
package cn.chjyj.szwh.service.impl; |
|||
|
|||
import cn.chjyj.szwh.service.GoodsTaskService; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
@Service |
|||
public class GoodsTaskServiceImpl implements GoodsTaskService { |
|||
@Override |
|||
public void getRevocationGoods() { |
|||
String st="同步被撤销商品信息"; |
|||
System.out.println(st); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue