鄂尔多斯-招源科技

CustomerFieldInput.cs 661B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CallCenterApi.Interface.Models.Input
  6. {
  7. public class CustomerFieldInput
  8. {
  9. public int Id { get; set; }
  10. public int AttributeId { get; set; }
  11. public string Name { get; set; }
  12. public int? Sort { get; set; } = 0;
  13. public int? CharLength { get; set; } = 0;
  14. public int? IsNecessary { get; set; } = 0;
  15. public int? IsExportOrInput { get; set; } = 0;
  16. public int? IsShowOnList { get; set; } = 0;
  17. public int? IsShowOnScrean { get; set; } = 0;
  18. public int? Search { get; set; } = 0;
  19. }
  20. }