You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
399 B
16 lines
399 B
11 months ago
|
package com.zc.business.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.zc.business.domain.OdsTollEnpassData;
|
||
|
import com.zc.business.domain.OdsTollExpassData;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* 收费站出口流水数据Mapper接口
|
||
|
*
|
||
|
* @author xiepufeng
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface OdsTollExpassDataMapper extends BaseMapper<OdsTollExpassData> {
|
||
|
}
|