mitao
2024-12-23 71542a84d8461b3ae216ee35fda214752a94d350
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> {
 
}