zhongrj
2023-08-15 a65ae7bcc2a3ae10bf31a89fc0d2e7dfd0038a41
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package cn.gistack.sm.sjztmd.service;
 
import cn.gistack.sm.sjztmd.entity.AttResBase;
import cn.gistack.sm.sjztmd.entity.TbAttResBase;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @ClassName IAttResBaseService
 * @Description TODO
 * @author zhongrj
 * @date 2023/8/14
 * @Version 1.0
 */
public interface ITbAttResBaseService extends IService<TbAttResBase> {
 
    /**
     * 查询水库填报详情信息
     * @param guid
     * @return
     */
    TbAttResBase getDetailByGuid(String guid);
 
    /**
     * 编辑
     * @param tbAttResBase
     * @return
     */
    boolean updateByGuid(TbAttResBase tbAttResBase);
 
    /**
     * 审核
     * @param tbAttResBase
     * @return
     */
    boolean auditByGuid(TbAttResBase tbAttResBase);
}