lisy
2023-07-12 23f708d9f25de1969c75763994bb27da9b3610b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.dsh.guns.modular.system.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.guns.modular.system.model.TAuditRecord;
 
/**
 * <p>
 * 审核记录表 服务类
 * </p>
 *
 * @author stylefeng
 * @since 2023-04-25
 */
public interface ITAuditRecordService extends IService<TAuditRecord> {
 
}