ITaPersonService.java 698B

1234567891011121314151617181920212223242526272829
  1. package com.yunzhi.roundabout.service;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.yunzhi.roundabout.entity.TaPerson;
  4. import com.baomidou.mybatisplus.extension.service.IService;
  5. import java.time.LocalDateTime;
  6. import java.util.List;
  7. /**
  8. * <p>
  9. * 用户表 服务类
  10. * </p>
  11. *
  12. * @author yansen
  13. * @since 2022-01-13
  14. */
  15. public interface ITaPersonService extends IService<TaPerson> {
  16. TaPerson getByOpenId(String openid);
  17. boolean updateName(TaPerson taPerson);
  18. TaPerson getByPhone(String phone);
  19. IPage<TaPerson> getPageBy(IPage<TaPerson> pg, LocalDateTime start, LocalDateTime end);
  20. List<TaPerson> getListBy(LocalDateTime start, LocalDateTime end);
  21. }