123456789101112131415161718192021222324252627282930313233 |
- using YiSha.Util.Model;
- using System.Data.Common;
- using System.Threading.Tasks;
- using System.Collections.Generic;
- using YiSha.Entity.KJH;
- using YiSha.Model.Param.KJH;
- namespace YiSha.IService.KJH
- {
-
-
-
-
-
- public partial interface IZT_ArticleService
- {
-
-
-
-
-
- Task<int> SaveFormPartial(TZ_ArticleParam entity);
-
-
-
-
-
-
- Task<int> DeleteFormByIdPartial(string ids, bool del = false);
- }
- }
|