using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VOL.Model.School.Response { /// /// 学校账号预约 /// public class SchoolAccountApplicationModel { public int Id { get; set; } /// ///学校名称 /// public string SchoolName { get; set; } /// ///学校地址 /// public string SchoolAddress { get; set; } /// /// 用户姓名 /// public string UserName { get; set; } /// /// 联系电话 /// public string PhoneNo { get; set; } /// /// 状态[1:未处理/2:已处理] /// public int Status { get; set; } /// ///来访时间 /// public DateTime? VisitingTime { get; set; } /// ///备注 /// public string Remarks { get; set; } } }