lius
2023-07-17 187bc7f5fbf919a6f1844ba16dc0b046c5a923ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.jeecg.modules.mdc.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.MdcProcessQuantity;
import org.jeecg.modules.mdc.mapper.MdcProcessQuantityMapper;
import org.jeecg.modules.mdc.service.IMdcProcessQuantityService;
import org.springframework.stereotype.Service;
 
 
/**
 * @Description: 加工数量表
 * @Author: Lius
 * @Date: 2023-07-17
 * @Version: V1.0
 */
@Service
public class MdcProcessQuantityServiceImpl extends ServiceImpl<MdcProcessQuantityMapper, MdcProcessQuantity> implements IMdcProcessQuantityService {
 
}