using System;
using ZR.Model;
using ZR.Model.Dto;
using ZR.Model.Models;
using System.Collections.Generic;
namespace ZR.Service.System.IService
{
///
/// 多语言配置service接口
///
/// @author zr
/// @date 2022-05-06
///
public interface ICommonLangService : IBaseService
{
PagedInfo GetList(CommonLangQueryDto parm);
List GetLangList(CommonLangQueryDto parm);
dynamic GetListToPivot(CommonLangQueryDto parm);
void StorageCommonLang(CommonLangDto parm);
Dictionary SetLang(List msgList);
}
}