123456789101112131415 |
- using CZFW.Framework.Interface;
- using CZFW.Framework.Model.ViewModel;
- using CZKJ.GBRS2.Entity;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZKJ.GBRS2.Interface
- {
- public interface IFiles:ILogicBase<FilesEntity>
- {
- TableModel<FilesEntity> GetTableList(int pageIndex = 1, int pageSize = 20, string name = "");
- }
- }
|