鄂尔多斯-招源科技

T_Cus_CustomerField.cs 846B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CallCenterApi.Model
  7. {
  8. public class T_Cus_CustomerField
  9. {
  10. public int F_Id { get; set; }
  11. public int F_FieldType { get; set; }
  12. public int F_FieldId { get; set; }
  13. public string F_Name { get; set; }
  14. public string F_DBTypeName { get; set; }
  15. public string F_DBFieldName { get; set; }
  16. public int? F_Sort { get; set; } = 0;
  17. public int? F_CharLength { get; set; } = 0;
  18. public int? F_IsNecessary { get; set; } = 0;
  19. public int? F_IsExportOrInput { get; set; } = 0;
  20. public int? F_IsShowOnList { get; set; } = 0;
  21. public int? F_IsShowOnScrean { get; set; } = 0;
  22. public int? F_Search { get; set; } = 0;
  23. }
  24. }