12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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
- {
-
-
-
- [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; }
- }
- }
|