24 lines
704 B
C#
24 lines
704 B
C#
using ZR.Model;
|
|
using ZR.ServiceCore.Model;
|
|
using ZR.ServiceCore.Model.Dto;
|
|
|
|
namespace ZR.Service.System.IService
|
|
{
|
|
/// <summary>
|
|
/// 多语言配置service接口
|
|
///
|
|
/// @author zr
|
|
/// @date 2022-05-06
|
|
/// </summary>
|
|
public interface ICommonLangService : IBaseService<CommonLang>
|
|
{
|
|
PagedInfo<CommonLang> GetList(CommonLangQueryDto parm);
|
|
List<CommonLang> GetLangList(CommonLangQueryDto parm);
|
|
dynamic GetListToPivot(CommonLangQueryDto parm);
|
|
void StorageCommonLang(CommonLangDto parm);
|
|
Dictionary<string, object> SetLang(List<CommonLang> msgList);
|
|
|
|
(string, object, object) ImportCommonLang(List<CommonLang> list);
|
|
}
|
|
}
|