123456789101112131415 |
- using Microsoft.AspNetCore.Http;
- using QM.KJGH.CGGL.Model.Ghxms;
- using QM.KJGH.Model.KJGH;
- using QM.OrmSqlSugar;
- using System.Threading.Tasks;
- namespace QM.KJGH.CGGL.IRepository
- {
- public interface IGhbzGhxmJdRepository : ISqlSugarRepository<GhbzGhxmJd>
- {
- bool Add(GhbzGhxmJd model, IFormFileCollection files);
- Task<GhbzGhxmJdView> QueryByXmBsm(string xmBsm);
- }
- }
|