| 12345678910111213141516171819202122 |
- package com.poteviohealth.ym.ipos.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.poteviohealth.ym.ipos.model.Area;
- import java.util.List;
- /**
- * 区域
- * @author Qin
- */
- public interface IAreaService extends IService<Area> {
- /**
- * 根据Id,获取对应code
- * @param id
- * @return
- */
- List<String> getAreaCode(Integer id);
- }
|