using Furion.Extras.Admin.NET; using Microsoft.AspNetCore.Mvc; namespace Admin.NET.Application { /// /// $ChinaComment$·þÎñ½Ó¿Ú /// public interface I$EntityName$Service { /// /// ·ÖÒ³²éѯ$ChinaComment$ /// /// ·ÖÒ³²éѯ²ÎÊý /// Task> Page([FromQuery] $EntityName$PageInput input); /// /// Ôö¼Ó$ChinaComment$ /// /// Ôö¼Ó²ÎÊý /// Task Add([FromBody] Add$EntityName$Input input); /// /// ¸üÐÂ$ChinaComment$ /// /// ¸üвÎÊý /// Task Update([FromBody] Update$EntityName$Input input); /// /// ɾ³ý$ChinaComment$ /// /// ɾ³ý²ÎÊý /// Task Delete([FromBody] Delete$EntityName$Input input); /// /// »ñÈ¡$ChinaComment$ /// /// »ñÈ¡¶ÔÏó²ÎÊý /// Task<$EntityName$Output> Get([FromQuery] Query$EntityName$Input input); /// /// µ¼³ö$ChinaComment$Excel /// /// ɸѡÌõ¼þ /// Task Export([FromQuery] $EntityName$PageInput input); } }