xiaoyong931011
2021-07-16 9fe8f2b9eb26431e0da9ddcc55c8d0ca2f6d259c
1
2
3
4
5
6
7
8
9
10
package com.xzx.gc.system.mapper;
 
import com.xzx.gc.entity.SysItemPrice;
import com.xzx.gc.util.GcMapper;
 
import java.util.List;
 
public interface SysItemPriceMapper extends GcMapper<SysItemPrice> {
    List<SysItemPrice> findPriceByUserId(String userId);
}