update from old git
This commit is contained in:
32
web/App_Code/Model/ViewModel/GuaDanGuestView.cs
Normal file
32
web/App_Code/Model/ViewModel/GuaDanGuestView.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
/// <summary>
|
||||
/// GuaDanGuestView 的摘要描述
|
||||
/// </summary>
|
||||
public class GuaDanGuestView
|
||||
{
|
||||
public GuaDanGuestView()
|
||||
{
|
||||
//
|
||||
// TODO: 在這裡新增建構函式邏輯
|
||||
//
|
||||
}
|
||||
public int? Id { get; set; }
|
||||
[Required]
|
||||
[StringLength(100, MinimumLength = 1)]
|
||||
public string FullName { get; set; }
|
||||
public Nullable<int> Gender { get; set; }
|
||||
public string Phone { get; set; }
|
||||
public string IDNumber { get; set; }
|
||||
public Nullable<System.DateTime> Birthday { get; set; }
|
||||
public string Email { get; set; }
|
||||
public string Address { get; set; }
|
||||
public string EmergencyContact { get; set; }
|
||||
public string EmergencyPhone { get; set; }
|
||||
public Nullable<int> Status { get; set; }
|
||||
public string Notes { get; set; }
|
||||
}
|
||||
23
web/App_Code/Model/ViewModel/GuaDanOrderView.cs
Normal file
23
web/App_Code/Model/ViewModel/GuaDanOrderView.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
/// <summary>
|
||||
/// GuaDanOrderView 的摘要描述
|
||||
/// </summary>
|
||||
public class GuaDanOrderView
|
||||
{
|
||||
public Guid? Uuid { get; set; } = null;
|
||||
public System.DateTime startdate { get; set; }
|
||||
public Nullable<System.DateTime> enddate { get; set; }
|
||||
public Guid? statusUuid { get; set; } = null;
|
||||
public Nullable<int> createuser { get; set; }
|
||||
public System.DateTime createdat { get; set; }
|
||||
public System.DateTime updatedat { get; set; }
|
||||
public string note { get; set; }
|
||||
public string bookerName { get; set; }
|
||||
public string bookerPhone { get; set; }
|
||||
public int? bookerFollowerNum { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user