shiyunteng
8 天以前 db12bb4a131e547d4d0b6e3fae33faba5465974d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.business.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.business.entity.OutBoundAtt;
import com.by4cloud.platformx.business.mapper.OutBoundAttMapper;
import com.by4cloud.platformx.business.service.OutBoundAttService;
import org.springframework.stereotype.Service;
/**
 * 出库附件
 *
 * @author syt
 * @date 2026-04-29 11:32:47
 */
@Service
public class OutBoundAttServiceImpl extends ServiceImpl<OutBoundAttMapper, OutBoundAtt> implements OutBoundAttService {
}