/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; using System.Collections.Generic; using System.Text; using Newtonsoft.Json.Linq; namespace CoreCms.Net.Model.FromBody { /// /// 后台审核售后单提交参数 /// public class FMBillAftersalesAddPost { public string aftersalesId { get; set; } public int status { get; set; } public int type { get; set; } public decimal refund { get; set; } public string mark { get; set; } public JArray items { get; set; } } }