Files
17168ERP/web/App_Code/Model/ViewModel/preOrder.cs
T
2026-08-06 18:00:04 +08:00

32 lines
908 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; }
public string act_name { get; set; }
}
}