| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- public class T_Cus_CustomerField
- {
- public int F_Id { get; set; }
- public int F_FieldType { get; set; }
- public int F_FieldId { get; set; }
- public string F_Name { get; set; }
- public string F_DBTypeName { get; set; }
- public string F_DBFieldName { get; set; }
- public int? F_Sort { get; set; } = 0;
- public int? F_CharLength { get; set; } = 0;
- public int? F_IsNecessary { get; set; } = 0;
- public int? F_IsExportOrInput { get; set; } = 0;
- public int? F_IsShowOnList { get; set; } = 0;
- public int? F_IsShowOnScrean { get; set; } = 0;
- public int? F_Search { get; set; } = 0;
- }
- }
|