| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.smartSteward.mapper.gas;
- import java.util.List;
- import com.smartSteward.entity.database.gas.GasLicenseArchive;
- /**
- * 证照档案Mapper接口
- *
- * @author smart-steward
- */
- public interface GasLicenseArchiveMapper
- {
- /**
- * 查询证照档案
- *
- * @param id 证照档案主键
- * @return 证照档案
- */
- public GasLicenseArchive selectGasLicenseArchiveById(Long id);
- /**
- * 查询证照档案列表
- *
- * @param gasLicenseArchive 证照档案
- * @return 证照档案集合
- */
- public List<GasLicenseArchive> selectGasLicenseArchiveList(GasLicenseArchive gasLicenseArchive);
- /**
- * 新增证照档案
- *
- * @param gasLicenseArchive 证照档案
- * @return 结果
- */
- public int insertGasLicenseArchive(GasLicenseArchive gasLicenseArchive);
- /**
- * 修改证照档案
- *
- * @param gasLicenseArchive 证照档案
- * @return 结果
- */
- public int updateGasLicenseArchive(GasLicenseArchive gasLicenseArchive);
- /**
- * 删除证照档案
- *
- * @param id 证照档案主键
- * @return 结果
- */
- public int deleteGasLicenseArchiveById(Long id);
- /**
- * 批量删除证照档案
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteGasLicenseArchiveByIds(Long[] ids);
- }
|