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

28 lines
832 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Core.Device
  8. {
  9. [SugarTable("bpa_technologyaction")]
  10. public class BPA_TechnologyAction
  11. {
  12. /// <summary>
  13. /// 主键 Guid
  14. /// </summary>
  15. [SugarColumn(IsPrimaryKey = true, ColumnDataType = "Nvarchar(64)", IsNullable = false)]
  16. public string Id { get; set; }
  17. public string TechnologyId { get; set; }
  18. public string ActionName { get; set; }
  19. public string ActionValue { get; set; }
  20. public string ActionType { get; set; }
  21. public string Unit { get; set; }
  22. public bool IsBatch { get; set; }
  23. public DateTime CreateAt { get; set; }
  24. public int Sort { get; set; }
  25. }
  26. }