31 lines
863 B
C#
31 lines
863 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
namespace Model.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// preOrder 的摘要描述
|
|
/// </summary>
|
|
public class preOrder
|
|
{
|
|
public preOrder()
|
|
{
|
|
//
|
|
// TODO: 在這裡新增建構函式邏輯
|
|
//
|
|
}
|
|
|
|
public int? num { get; set; }
|
|
public Nullable<int> f_num { get; set; }
|
|
public string order_no { get; set; }
|
|
public Nullable<int> item_count { get; set; }
|
|
public Nullable<int> total_amt { get; set; }
|
|
public Nullable<int> act_num { get; set; }
|
|
public Nullable<int> admin_num { get; set; }
|
|
public Nullable<System.DateTime> reg_time { get; set; }
|
|
public Nullable<int> receipt_num { get; set; }
|
|
public string f_name { get; set; }
|
|
|
|
}
|
|
} |