22 lines
399 B
C#
22 lines
399 B
C#
using RIZO.Model.YALITEST.Dto;
|
|
using RIZO.Model.YALITEST;
|
|
|
|
namespace RIZO.Service.YALITEST.IService
|
|
{
|
|
/// <summary>
|
|
/// service接口
|
|
/// </summary>
|
|
public interface ITest2Service : IBaseService<Test2>
|
|
{
|
|
PagedInfo<Test2Dto> GetList(Test2QueryDto parm);
|
|
|
|
Test2 GetInfo(long Id);
|
|
|
|
|
|
Test2 AddTest2(Test2 parm);
|
|
int UpdateTest2(Test2 parm);
|
|
|
|
|
|
}
|
|
}
|