91 lines
3.2 KiB
C#
91 lines
3.2 KiB
C#
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>
|
|
/// Summary description for transfer_register
|
|
/// </summary>
|
|
public class transfer_register
|
|
{
|
|
public transfer_register()
|
|
{
|
|
//
|
|
// TODO: Add constructor logic here
|
|
//
|
|
}
|
|
|
|
public int id { get; set; }
|
|
public Nullable<int> 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<decimal> 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<System.DateTime> create_time { get; set; }
|
|
public Nullable<int> f_num_match { get; set; }
|
|
public Nullable<int> f_num { get; set; }
|
|
public Nullable<int> acc_num { get; set; }
|
|
public Nullable<System.DateTime> check_date { get; set; }
|
|
public Nullable<decimal> check_amount { get; set; }
|
|
public string check_memo { get; set; }
|
|
public string check_status { get; set; }
|
|
public Nullable<int> acc_kind { get; set; }
|
|
public Nullable<int> member_num { get; set; }
|
|
public Nullable<System.DateTime> verify_time { get; set; }
|
|
public string verify_note { get; set; }
|
|
public string draft { get; set; }
|
|
public Nullable<decimal> remain_amount { get; set; }
|
|
|
|
// 新增的餘額相關欄位
|
|
public Nullable<int> balance_act_item { get; set; }
|
|
public Nullable<int> 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<decimal> amount { get; set; }
|
|
public Nullable<decimal> remain_amount { get; set; }
|
|
public string activity_name { get; set; }
|
|
public Nullable<System.DateTime> create_time { get; set; }
|
|
public string check_status { get; set; }
|
|
public string check_status_text { get; set; }
|
|
|
|
// 餘額核銷相關
|
|
public Nullable<int> balance_act_item { get; set; }
|
|
public string balance_actitem_name { get; set; }
|
|
public Nullable<int> balance_pro_order_detail { get; set; }
|
|
public string balance_order_info { get; set; }
|
|
}
|
|
} |