using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Customer
{
///
/// 客户学历表
///
[SugarTable("Crm_VisaCustomerSchool")]
public class Crm_VisaCustomerSchool:EntityBase
{
///
/// 客户表ID
///
[SugarColumn(IsNullable =true,ColumnDataType ="int")]
public int DcId { get; set; }
///
/// 学校名称和学历
///
[SugarColumn(IsNullable =true,ColumnDataType = "varchar(100)")]
public string School { get; set; }
///
/// 学校地址
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(300)")]
public string Address { get; set; }
///
/// 指导老师
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string Teacher { get; set; }
///
/// 学历
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Education { get; set; }
///
/// 所学课程或专业名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Subject { get; set; }
///
/// 就读起始日
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime StudyStart { get; set; }
///
/// 就读结束日
///
[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
public DateTime StudyEnd { get; set; }
}
}