基础服务api
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.
 
 

26 lines
711 B

  1. using BPA.SAAS.Manage.Comm.Enum;
  2. using Kdbndp.KingbaseTypes;
  3. using SqlSugar;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace BPA.SAAS.Manage.Core.Device
  10. {
  11. [SugarTable("bpa_technology")]
  12. public class BPA_Technology
  13. {
  14. /// <summary>
  15. /// 主键 Guid
  16. /// </summary>
  17. [SugarColumn(IsPrimaryKey = true, ColumnDataType = "Nvarchar(64)", IsNullable = false)]
  18. public string Id { get; set; }
  19. public string Name { get; set; }
  20. public string DeviceVersionId { get; set; }
  21. public string ForeignKeyRe { get; set; }
  22. public DateTime CreateAt { get; set; }
  23. }
  24. }