using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Request { public class DrawBackCaseReq { /// /// 案件id /// public string id { get; set; } /// /// 退回类型 /// public string drawback_type { get; set; } /// /// 退回原因 /// public string drawbackReason { get; set; } } }