using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GasolineBlend.Entity { public class TryApply { /// /// id /// public int id { get; set; } /// /// 名称 /// public string name { get; set; } /// /// 邮件 /// public string email { get; set; } /// /// 电话 /// public string mobile { get; set; } /// /// 微信 /// public string wechat { get; set; } /// /// 公司名称 /// public string company { get; set; } /// /// 公司职位 /// public string position { get; set; } /// /// 创建时间 /// public DateTime createtime { get; set; } /// /// 状态 /// public string status { get; set; } } }