22 lines
544 B
C#
22 lines
544 B
C#
using System;
|
|
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
using ZR.Model.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ZR.Service.System.ISystemService
|
|
{
|
|
/// <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);
|
|
}
|
|
}
|