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