| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- /// <summary>
- /// 广电卡交易实体
- /// </summary>
- namespace MySystem
- {
- public class SIMTradeInfo
- {
- public string Mobile { get; set; } //用户手机号
- public string SimNo { get; set; } //SIM卡号
- public string CreateMonth { get; set; } //入网月份
- public string SettleMonth { get; set; } //结算月份
- public string SettleTime { get; set; } //结算账期
- public string SettleSpace { get; set; } //结算场景
- public string BusinessType { get; set; } //业务类型
- public string Province { get; set; } //用户省份
- public string City { get; set; } //用户地市
- public string Team { get; set; } //团队归属
- public string WorkName { get; set; } //行销宝姓名
- public string WorkNo { get; set; } //行销宝工号
- public string ProductName { get; set; } //商品名称
- public string TotalAmount { get; set; } //账单总金额
- public string InAmount { get; set; } //套内金额
- public string OutAmount { get; set; } //套外金额
- public string UserStatus { get; set; } //用户状态
- public string ChannelCode { get; set; } //渠道编码
- public string ChannelName { get; set; } //渠道名称
- public string OrderCreateTime { get; set; } //订单创建时间
- public string OrderStatus { get; set; } //订单状态
- public string ActTime { get; set; } //激活时间
- public string SourceProductName { get; set; } //原订单商品名称
- public string ProductType { get; set; } //商品类型名称
- public string ActivityName { get; set; } //促销活动名称
- public string Percent { get; set; } //分成比例
- public string OrgDivi { get; set; } //机构分成
- }
- }
|