huang
2025-04-17 3a0087aa5e3eed5d9d7a793a17dc01fd1d6df80c
1
2
3
4
5
6
7
8
9
10
11
12
package com.mes.quantity.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.mes.quantity.entity.Quantity;
import com.mes.quantity.mapper.QuantityMapper;
import com.mes.quantity.service.QuantityService;
import org.springframework.stereotype.Service;
 
@Service
public class QuantityServiceImpl extends ServiceImpl<QuantityMapper, Quantity> implements QuantityService {