1234567891011121314151617 |
- package com.huimv.mobile.service;
- import com.huimv.mobile.domain.MobileLast;
- import com.huimv.mobile.result.Result;
- /**
- * @Project : huimv.shiwan
- * @Package : com.huimv.mobile.service
- * @Description : TODO
- * @Author : yuxuexuan
- * @Create : 2021/4/20 0020 17:42
- **/
- public interface MobileLastService {
- Result add(MobileLast mobileLast);
- Result findLast(Integer userId);
- }
|