14 lines
277 B
Java
14 lines
277 B
Java
package com.ruoyi.system.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ruoyi.system.domain.EtAreaRule;
|
|
|
|
/**
|
|
* 区域与收费方式关联 业务层
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public interface IEtAreaRuleService extends IService<EtAreaRule>
|
|
{
|
|
}
|