45 lines
1.6 KiB
C#
45 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BackupAndImport.Entitys.annaer_cloud
|
|
{
|
|
public class member
|
|
{
|
|
public int id { get; set; }
|
|
public string wxid { get; set; }
|
|
public string wx_user { get; set; }
|
|
public string grade { get; set; }
|
|
public string wx_name { get; set; }
|
|
public string wx_remarks { get; set; }
|
|
public string name { get; set; }
|
|
public string zfb { get; set; }
|
|
public double ztx_money { get; set; }
|
|
public double ktx_money { get; set; }
|
|
public double wsh_money { get; set; }
|
|
public double ycs_money { get; set; }
|
|
public int zcg_number { get; set; }
|
|
public int zth_number { get; set; }
|
|
public int zwq_number { get; set; }
|
|
public int qd_number { get; set; }
|
|
public double qd_money { get; set; }
|
|
public string qd_time { get; set; }
|
|
public double royalty_one { get; set; }
|
|
public double royalty_two { get; set; }
|
|
public double royalty_three { get; set; }
|
|
public double royalty_total { get; set; }
|
|
public string rebate_type { get; set; }
|
|
public string royalty_type { get; set; }
|
|
public string pid { get; set; }
|
|
public string adding_time { get; set; }
|
|
public string due_time { get; set; }
|
|
public string shopping_time { get; set; }
|
|
public string configure { get; set; }
|
|
public string gzh_id { get; set; }
|
|
public string record { get; set; }
|
|
public string my_user { get; set; }
|
|
}
|
|
}
|