1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Customer
- {
-
-
-
- [SugarTable("Crm_VisaCustomerCompany")]
- public class Crm_VisaCustomerCompany:EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int DcId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string Company { get; set; }
-
-
-
- [SugarColumn(IsNullable =true,ColumnDataType ="varchar(300)")]
- public string CompanyAddress { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
- public string Phone { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Job { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
- public string LeaderName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime WorkStart { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "DateTime")]
- public DateTime WorkEnd { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
- public string WorkState { get; set; }
- }
- }
|