客堂登記報名

This commit is contained in:
2026-08-04 18:06:23 +08:00
parent da913d2584
commit d6c817475c
6 changed files with 465 additions and 42 deletions
+31
View File
@@ -0,0 +1,31 @@
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; }
}
}