using QYZH.InteractiveMagazine.IService.Dto; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Entity; namespace QYZH.InteractiveMagazine.IService; public interface IWxUserService : IBaseService { /// /// 创建微信用户 /// Task CreateAsync(WxUserInput input); /// /// 更新微信用户 /// Task UpdateAsync(long id, WxUserInput input); /// /// 删除微信用户(软删除) /// Task DeleteAsync(long id); /// /// 根据ID获取微信用户 /// Task GetByIdAsync(long id); /// /// 分页查询微信用户列表 /// Task> GetListAsync(WxUserQueryInput input); }