NewGaoKaoApi/New_College.Model/Models/U_VolunteerTable.cs

23 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
/// <summary>
/// 志愿Table
/// </summary>
public class U_VolunteerTable : DEntityTenant
{
/// <summary>
/// 用户ID
/// </summary>
public int CustomerId { get; set; }
/// <summary>
/// 志愿表名称
/// </summary>
public string VolunteerTableName { get; set; }
}
}