package com.boying.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.boying.entity.CostRule;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName CostRuleMapper.java
|
* @Description TODO
|
* @createTime 2022年11月20日 22:37:00
|
*/
|
@Mapper
|
public interface CostRuleMapper extends BaseMapper<CostRule> {
|
}
|