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