electripper/electripper-system/src/main/java/com/ruoyi/system/service/IEtAreaRuleService.java

14 lines
277 B
Java
Raw Normal View History

2024-05-23 17:24:41 +08:00
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>
{
}