Files
DeMiWebApi_yuyubo/MyCode.Project.Services/IServices/IStaffDataEnterpriseWechatService.cs

25 lines
551 B
C#
Raw Normal View History

2025-06-30 19:22:02 +08:00
using MyCode.Project.Domain.Message.Response.User;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Services
{
public interface IStaffDataEnterpriseWechatService
{
/// <summary>
2025-07-01 20:09:17 +08:00
/// 定时获取用户登录参数
2025-06-30 19:22:02 +08:00
/// </summary>
2025-07-01 20:09:17 +08:00
void TaskGetPasswordData();
2025-06-30 19:22:02 +08:00
/// <summary>
2025-07-01 20:09:17 +08:00
/// 调度定时登录账号信息
2025-06-30 19:22:02 +08:00
/// </summary>
2025-07-01 20:09:17 +08:00
void TaskGetUserByAccount();
2025-07-02 19:31:43 +08:00
void AddTask();
2025-06-30 19:22:02 +08:00
}
}