using System; using System.Collections.Generic; /// /// 广电卡激活实体 /// namespace MySystem { public class SIMActInfo { public string OrderNo { get; set; } //订单编码 public string CreateDate { get; set; } //订单创建时间 public string PhoneNumber { get; set; } //选择号码 public string HasFirstCharge { get; set; } //是否有首充 public string FirstChargeAmount { get; set; } //首充金额(元) public string Province { get; set; } //号码归属省份 public string City { get; set; } //号码归属地市 public string ProductName { get; set; } //商品名称 public string ActiveName { get; set; } //促销活动名称 public string ProductType { get; set; } //商品类型名称 public string ActualAmount { get; set; } //实付金额(元) public string OrderStatus { get; set; } //订单状态 public string ActStatus { get; set; } //激活状态名称 public string ActDate { get; set; } //激活时间 public string WorkNo { get; set; } //BOSS员工工号 public string AccountName { get; set; } //账号姓名 public string SimNo { get; set; } //SIM卡号 } }