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