MobileLastService.java 389 B

1234567891011121314151617
  1. package com.huimv.mobile.service;
  2. import com.huimv.mobile.domain.MobileLast;
  3. import com.huimv.mobile.result.Result;
  4. /**
  5. * @Project : huimv.shiwan
  6. * @Package : com.huimv.mobile.service
  7. * @Description : TODO
  8. * @Author : yuxuexuan
  9. * @Create : 2021/4/20 0020 17:42
  10. **/
  11. public interface MobileLastService {
  12. Result add(MobileLast mobileLast);
  13. Result findLast(Integer userId);
  14. }