fix
Helius
2021-07-15 f69fd42a3ae2d11713dcd284ae3db57e449ae6dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.xzx.gc.order.mapper;
 
import com.xzx.gc.entity.WeightItemPriceLog;
import com.xzx.gc.model.admin.WeightItemPriceLogModel;
import com.xzx.gc.model.admin.WeightPriceModel;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface WeightItemPriceLogMapper extends GcMapper<WeightItemPriceLog> {
 
    void insertRoyaltyLog(WeightItemPriceLogModel logModel);
 
}