ICountryNameService.java 1.45 KB
package com.lhcredit.project.business.country.service;

import com.lhcredit.project.business.country.domain.CountryName;
import java.util.List;

/**
 * 国家标 服务层
 *
 * @author lhcredit
 * @date 2025-03-13
 */
public interface ICountryNameService {
    /**
     * 查询国家标信息
     *
     * @param jc 国家标ID
     * @return 国家标信息
     */
    public CountryName selectCountryById(String jc);

    /**
     * 查询国家标列表
     *
     * @param country 国家标信息
     * @return 国家标集合
     */
    public List<CountryName> selectCountryList(CountryName country);

    /**
     * 字段转换
     * @param country 国家标信息
     * @return 国家标信息
     */
    public CountryName changeModel(CountryName country);

    /**
     * 列表转换
     *
     * @param countryList 国家标集合
     * @return 国家标集合
     */
    public List<CountryName> changeModel(List<CountryName> countryList);

//    /**
//     * 新增国家标
//     *
//     * @param country 国家标信息
//     * @return 结果
//     */
//    public int insertCountry(Country country);
//
//    /**
//     * 修改国家标
//     *
//     * @param country 国家标信息
//     * @return 结果
//     */
//    public int updateCountry(Country country);
//
//    /**
//     * 删除国家标信息
//     *
//     * @param ids 需要删除的数据ID
//     * @return 结果
//     */
//    public int deleteCountryByIds(String ids);

}