You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DesktopEntity.cs 1.1 KiB

4 years ago
12345678910111213141516171819202122232425262728293031323334353637
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace Learun.Application.AppMagager.Function
  3. {
  4. public class DesktopEntity
  5. {
  6. [Column("F_ID")]
  7. public string F_Id { get; set; }
  8. [Column("F_Name")]
  9. public string F_Name { get; set; }
  10. [Column("F_Icon")]
  11. public string F_Icon { get; set; }
  12. [Column("F_Sql")]
  13. public object F_Sql { get; set; }
  14. [Column("F_CreateUserId")]
  15. public string F_CreateUserId { get; set; }
  16. [Column("F_CreateUserName")]
  17. public string F_CreateUserName { get; set; }
  18. [Column("F_CreateDate")]
  19. public string F_CreateDate { get; set; }
  20. [Column("F_Description")]
  21. public string F_Description { get; set; }
  22. [Column("F_Sort")]
  23. public int F_Sort { get; set; }
  24. [Column("F_Url")]
  25. public string F_Url { get; set; }
  26. [Column("F_DataSourceId")]
  27. public string F_DataSourceId { get; set; }
  28. /// <summary>
  29. /// F_Type
  30. /// </summary>
  31. [Column("F_TYPE")]
  32. public int? F_Type { get; set; }
  33. }
  34. }