update from old git

This commit is contained in:
2025-09-04 18:30:54 +08:00
parent af2c152ef6
commit 61502cb3bd
46 changed files with 6420 additions and 0 deletions

View 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; }
}