32 lines
920 B
C#
32 lines
920 B
C#
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; }
|
|
} |