SkuSellQuantityServiceImpl.java
636 Bytes
package com.tianting.infoloop.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.tianting.infoloop.mapper.SkuSellQuantityMapper;
import com.tianting.infoloop.model.db.SkuSellQuantity;
import com.tianting.infoloop.service.SkuSellQuantityService;
import org.springframework.stereotype.Service;
/**
* @author zhuyf
* @description 针对表【sku_sell_quantities(sku售卖量)】的数据库操作Service实现
* @createDate 2025-02-28 14:03:59
*/
@Service
public class SkuSellQuantityServiceImpl extends ServiceImpl<SkuSellQuantityMapper, SkuSellQuantity> implements SkuSellQuantityService {
}