1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.changhong.epc.tenant.mapper.tenant.system.math;
|
| import com.changhong.epc.bean.count.system.SystemMathParam;
| import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
|
| /**
| * 系统变量参数持久层接口
| * @author liush
| *
| */
| public interface SystemMathParamMapper extends MybatisBaseMapper<SystemMathParam> {
|
|
| }
|
|