猫妈狗爸伴宠师小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.5 KiB

9 months ago
9 months ago
8 months ago
9 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
8 months ago
9 months ago
  1. package com.ruoyi.model.service;
  2. import java.util.List;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.ruoyi.model.domain.AppletOutDate;
  5. /**
  6. * 不接单日期Service接口
  7. *
  8. * @author ruoyi
  9. * @date 2025-03-28
  10. */
  11. public interface IAppletOutDateService extends IService<AppletOutDate>
  12. {
  13. /**
  14. * 查询不接单日期
  15. *
  16. * @param id 不接单日期主键
  17. * @return 不接单日期
  18. */
  19. public AppletOutDate selectAppletOutDateById(Long id);
  20. /**
  21. * 查询不接单日期列表
  22. *
  23. * @param appletOutDate 不接单日期
  24. * @return 不接单日期集合
  25. */
  26. public List<AppletOutDate> selectAppletOutDateList(AppletOutDate appletOutDate);
  27. /**
  28. * 新增不接单日期
  29. *
  30. * @param appletOutDate 不接单日期
  31. * @return 结果
  32. */
  33. public int insertAppletOutDate(AppletOutDate appletOutDate);
  34. /**
  35. * 修改不接单日期
  36. *
  37. * @param appletOutDate 不接单日期
  38. * @return 结果
  39. */
  40. public int updateAppletOutDate(AppletOutDate appletOutDate);
  41. /**
  42. * 批量删除不接单日期
  43. *
  44. * @param ids 需要删除的不接单日期主键集合
  45. * @return 结果
  46. */
  47. public int deleteAppletOutDateByIds(Long[] ids);
  48. public int deleteAppletOutDateByIdList(Long addressId);
  49. /**
  50. * 删除不接单日期信息
  51. *
  52. * @param id 不接单日期主键
  53. * @return 结果
  54. */
  55. public int deleteAppletOutDateById(Long id);
  56. }