49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Model.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// statistic 的摘要描述
|
|
/// </summary>
|
|
public class statistic
|
|
{
|
|
public statistic()
|
|
{
|
|
//
|
|
// TODO: 在這裡新增建構函式邏輯
|
|
//
|
|
}
|
|
public int id { get; set; }
|
|
public int num { get; set; }
|
|
public int kind { get; set; }
|
|
|
|
public string kindName { get; set; }
|
|
public string order_no { get; set; }
|
|
public string subject { get; set; }
|
|
public string u_name { get; set; }
|
|
public string pay_type { get; set; }
|
|
public decimal amount { get; set; }
|
|
|
|
public float price { get; set; }
|
|
public string pay_mode { get; set; }
|
|
public string status { get; set; }
|
|
public int f_num { get; set; }
|
|
public int acc_num { get; set; }
|
|
public int acc_kind { get; set; }
|
|
public decimal check_amount { get; set; }
|
|
public decimal remain_amount { get; set; }
|
|
|
|
public string check_status { get; set; }
|
|
public int actItem_num { get; set; }
|
|
public string draft { get; set; }
|
|
public int qty { get; set; }
|
|
public int d_num { get; set; }
|
|
|
|
public string s_date { get; set; }
|
|
public string e_date { get; set; }
|
|
}
|
|
|
|
} |