Нет описания

GasLicenseArchiveMapper.java 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.smartSteward.mapper.gas;
  2. import java.util.List;
  3. import com.smartSteward.entity.database.gas.GasLicenseArchive;
  4. /**
  5. * 证照档案Mapper接口
  6. *
  7. * @author smart-steward
  8. */
  9. public interface GasLicenseArchiveMapper
  10. {
  11. /**
  12. * 查询证照档案
  13. *
  14. * @param id 证照档案主键
  15. * @return 证照档案
  16. */
  17. public GasLicenseArchive selectGasLicenseArchiveById(Long id);
  18. /**
  19. * 查询证照档案列表
  20. *
  21. * @param gasLicenseArchive 证照档案
  22. * @return 证照档案集合
  23. */
  24. public List<GasLicenseArchive> selectGasLicenseArchiveList(GasLicenseArchive gasLicenseArchive);
  25. /**
  26. * 新增证照档案
  27. *
  28. * @param gasLicenseArchive 证照档案
  29. * @return 结果
  30. */
  31. public int insertGasLicenseArchive(GasLicenseArchive gasLicenseArchive);
  32. /**
  33. * 修改证照档案
  34. *
  35. * @param gasLicenseArchive 证照档案
  36. * @return 结果
  37. */
  38. public int updateGasLicenseArchive(GasLicenseArchive gasLicenseArchive);
  39. /**
  40. * 删除证照档案
  41. *
  42. * @param id 证照档案主键
  43. * @return 结果
  44. */
  45. public int deleteGasLicenseArchiveById(Long id);
  46. /**
  47. * 批量删除证照档案
  48. *
  49. * @param ids 需要删除的数据主键集合
  50. * @return 结果
  51. */
  52. public int deleteGasLicenseArchiveByIds(Long[] ids);
  53. }