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; }
|
||||
}
|
||||
Reference in New Issue
Block a user