using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Configuration; using System.Collections; using Newtonsoft.Json; using System.ComponentModel; using System.Globalization; namespace Model.ViewModel { /// /// Summary description for transfer_register /// public class transfer_register { public transfer_register() { // // TODO: Add constructor logic here // } public int id { get; set; } public Nullable activity_num { get; set; } public string name { get; set; } public string phone { get; set; } public string pay_type { get; set; } public string account_last5 { get; set; } public Nullable amount { get; set; } public string pay_mode { get; set; } public string note { get; set; } public string proof_img { get; set; } public string status { get; set; } public Nullable create_time { get; set; } public Nullable f_num_match { get; set; } public Nullable f_num { get; set; } public Nullable acc_num { get; set; } public Nullable check_date { get; set; } public Nullable check_amount { get; set; } public string check_memo { get; set; } public string check_status { get; set; } public Nullable acc_kind { get; set; } public Nullable member_num { get; set; } public Nullable verify_time { get; set; } public string verify_note { get; set; } public string draft { get; set; } public Nullable remain_amount { get; set; } // 新增的餘額相關欄位 public Nullable balance_act_item { get; set; } public Nullable balance_pro_order_detail { get; set; } // 顯示用的文字欄位 public string activity_name { get; set; } public string follower_name { get; set; } public string actitem_name { get; set; } public string order_detail_info { get; set; } public string acc_kind_name { get; set; } public string status_text { get; set; } public string check_status_text { get; set; } } public class transfer_balance_reconcile { public transfer_balance_reconcile() { // // TODO: Add constructor logic here // } public int id { get; set; } public string name { get; set; } public string phone { get; set; } public Nullable amount { get; set; } public Nullable remain_amount { get; set; } public string activity_name { get; set; } public Nullable create_time { get; set; } public string check_status { get; set; } public string check_status_text { get; set; } // 餘額核銷相關 public Nullable balance_act_item { get; set; } public string balance_actitem_name { get; set; } public Nullable balance_pro_order_detail { get; set; } public string balance_order_info { get; set; } } }