using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 报废返回结果类 /// public class ScrapResultModel { /// /// 流转卡号 /// public string processCardNumber { get; set; } /// /// 报废确认(Y/N) /// public string isScrapped { get; set; } /// /// 数量 /// public int quantity { get; set; } } }