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 {
|
|
}
|