Blame view

src/main/java/com/huaheng/pc/config/shipmentPreference/mapper/ShipmentPreferenceMapper.java 274 Bytes
pengcheng authored
1
package com.huaheng.pc.config.shipmentPreference.mapper;
2
3

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
pengcheng authored
4
import com.huaheng.pc.config.shipmentPreference.domain.ShipmentPreference;
5
6
7

public interface ShipmentPreferenceMapper extends BaseMapper<ShipmentPreference> {
}