24 lines
757 B
C#
24 lines
757 B
C#
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; }
|
|
public int? activityNum { get; set; }
|
|
|
|
} |