12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.phm.web.service;
- import java.util.List;
- import com.phm.web.domain.GroundDiagnosisModel;
- /**
- * 地面诊断模型信息Service接口
- *
- * @author phm
- * @date 2023-08-22
- */
- public interface IGroundDiagnosisModelService {
- /**
- * 查询地面诊断模型信息
- *
- * @param id 地面诊断模型信息主键
- * @return 地面诊断模型信息
- */
- public GroundDiagnosisModel selectGroundDiagnosisModelById(Long id);
- /**
- * 查询地面诊断模型信息列表
- *
- * @param groundDiagnosisModel 地面诊断模型信息
- * @return 地面诊断模型信息集合
- */
- public List<GroundDiagnosisModel> selectGroundDiagnosisModelList(GroundDiagnosisModel groundDiagnosisModel);
- /**
- * 新增地面诊断模型信息
- *
- * @param groundDiagnosisModel 地面诊断模型信息
- * @return 结果
- */
- public int insertGroundDiagnosisModel(GroundDiagnosisModel groundDiagnosisModel);
- /**
- * 修改地面诊断模型信息
- *
- * @param groundDiagnosisModel 地面诊断模型信息
- * @return 结果
- */
- public int updateGroundDiagnosisModel(GroundDiagnosisModel groundDiagnosisModel);
- /**
- * 批量删除地面诊断模型信息
- *
- * @param ids 需要删除的地面诊断模型信息主键集合
- * @return 结果
- */
- public int deleteGroundDiagnosisModelByIds(Long[] ids);
- /**
- * 删除地面诊断模型信息信息
- *
- * @param id 地面诊断模型信息主键
- * @return 结果
- */
- public int deleteGroundDiagnosisModelById(Long id);
- }
|