package cn.gistack.sm.sjztmd.service;
|
|
import cn.gistack.sm.sjztmd.entity.TbAttResMgrSysB;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
/**
|
* @ClassName ITbAttResMgrSysBService
|
* @Description TODO
|
* @author zhongrj
|
* @date 2023/8/14
|
* @Version 1.0
|
*/
|
public interface ITbAttResMgrSysBService extends IService<TbAttResMgrSysB> {
|
|
/**
|
* 查询水库填报详情信息
|
* @param guid
|
* @return
|
*/
|
TbAttResMgrSysB getDetailByGuid(String guid);
|
|
/**
|
* 编辑
|
* @param tbAttResMgrSysB
|
* @return
|
*/
|
boolean updateByGuid(TbAttResMgrSysB tbAttResMgrSysB);
|
|
/**
|
* 审核
|
* @param tbAttResMgrSysB
|
* @return
|
*/
|
boolean auditByGuid(TbAttResMgrSysB tbAttResMgrSysB);
|
}
|