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