AimPlaceContentChildService.java 789 B

123456789101112131415161718192021222324252627
  1. package com.izouma.awesomeadmin.service;
  2. import java.util.*;
  3. import com.izouma.awesomeadmin.dto.Page;
  4. import com.izouma.awesomeadmin.model.AimPlaceContentChild;
  5. /**
  6. * service接口类
  7. */
  8. public interface AimPlaceContentChildService{
  9. List<AimPlaceContentChild> getAimPlaceContentChildList(AimPlaceContentChild record);
  10. List<AimPlaceContentChild> getAimPlaceContentChildByPage(Page page, AimPlaceContentChild record);
  11. AimPlaceContentChild getAimPlaceContentChildById(String id);
  12. AimPlaceContentChild getAimPlaceContentChild(AimPlaceContentChild record);
  13. boolean createAimPlaceContentChild(AimPlaceContentChild record);
  14. boolean deleteAimPlaceContentChild(AimPlaceContentChild record);
  15. boolean updateAimPlaceContentChild(AimPlaceContentChild record);
  16. }