mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
62 lines
1.4 KiB
Java
62 lines
1.4 KiB
Java
package com.jsowell.pile.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.jsowell.pile.domain.AreaCodeInfo;
|
|
|
|
/**
|
|
* 中国行政地区Service接口
|
|
*
|
|
* @author jsowell
|
|
* @date 2024-12-20
|
|
*/
|
|
public interface IAreaCodeInfoService {
|
|
/**
|
|
* 查询中国行政地区
|
|
*
|
|
* @param id 中国行政地区主键
|
|
* @return 中国行政地区
|
|
*/
|
|
public AreaCodeInfo selectAreaCodeInfoById(Integer id);
|
|
|
|
/**
|
|
* 查询中国行政地区列表
|
|
*
|
|
* @param areaCodeInfo 中国行政地区
|
|
* @return 中国行政地区集合
|
|
*/
|
|
public List<AreaCodeInfo> selectAreaCodeInfoList(AreaCodeInfo areaCodeInfo);
|
|
|
|
/**
|
|
* 新增中国行政地区
|
|
*
|
|
* @param areaCodeInfo 中国行政地区
|
|
* @return 结果
|
|
*/
|
|
public int insertAreaCodeInfo(AreaCodeInfo areaCodeInfo);
|
|
|
|
/**
|
|
* 修改中国行政地区
|
|
*
|
|
* @param areaCodeInfo 中国行政地区
|
|
* @return 结果
|
|
*/
|
|
public int updateAreaCodeInfo(AreaCodeInfo areaCodeInfo);
|
|
|
|
/**
|
|
* 批量删除中国行政地区
|
|
*
|
|
* @param ids 需要删除的中国行政地区主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteAreaCodeInfoByIds(Integer[] ids);
|
|
|
|
/**
|
|
* 删除中国行政地区信息
|
|
*
|
|
* @param id 中国行政地区主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteAreaCodeInfoById(Integer id);
|
|
}
|