mitao
2025-04-04 d89a42213b4a32535e93185dedf41fe7a7fc1940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.sinata.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.sinata.system.domain.MwAttachment;
 
/**
 * <p>
 * 附件表 服务类
 * </p>
 *
 * @author mitao
 * @since 2024-12-19
 */
public interface MwAttachmentService extends IService<MwAttachment> {
 
}