using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.CallBack.QiYeWeChat { /// /// 企业微信 /// 回调通知 /// public class ApproveCallBackInputDTO { public string? msg_signature { get; set; } public string? timestamp { get; set; } public string? nonce { get; set; } public string? echostr { get; set; } } }