mitao
2025-03-27 1f5ef3a86b1227f49c6840b2205174e4ab2f0f14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.sinata.system.service.impl;
 
import com.sinata.system.domain.MwAttachment;
import com.sinata.system.mapper.MwAttachmentMapper;
import com.sinata.system.service.MwAttachmentService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 附件表 服务实现类
 * </p>
 *
 * @author mitao
 * @since 2024-12-19
 */
@Service
public class MwAttachmentServiceImpl extends ServiceImpl<MwAttachmentMapper, MwAttachment> implements MwAttachmentService {
 
}