using WX.CRM.Common; namespace WX.CRM.WEB.ViewModel.Level2 { public class UpdateModel { public string L2OrderId { get; private set; } public string orderStatus { get; private set; } public string canceluser { get; private set; } public UpdateModel(string _L2OrderId, string _orderStatus, string _canceluser) { this.L2OrderId = _L2OrderId; this.orderStatus = _orderStatus; this.canceluser = _canceluser; } public returnResult getResult() { string json = Utility.ConvertToJSON(this); string url = Utility.GetSettingByKey("L2OrderRefund"); returnResult result = new returnResult(); result = result.getResult(json, url); return result; } } }