liujie
5 天以前 4068eb1f7c50b37d816934b822116f45af182b0e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.TErpGoodsType;
import com.ruoyi.system.query.TErpGoodsTypeQuery;
 
/**
 * <p>
 * erp商品类型名称 服务类
 * </p>
 *
 * @author xiaochen
 * @since 2025-08-20
 */
public interface TErpGoodsTypeService extends IService<TErpGoodsType> {
    /**
     * 判断分类是否存在
     * @param dto
     * @return
     */
    boolean isExit(TErpGoodsType dto);
 
    /**
     * 获取erp商品类型分页列表
     * @param query
     * @return
     */
    PageInfo<TErpGoodsType> pageList(TErpGoodsTypeQuery query);
}