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

  1. using BPA.SAAS.Manage.Comm.Enum;
  2. using BPA.SAAS.Manage.Core.Base;
  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_devicevesion")]
  12. public class BPA_DeviceVesion : IBaseEntity, IGroupId
  13. {
  14. public string Vesion { get; set; }
  15. public string DeviceTypeKey { get; set; }
  16. /// <summary>
  17. /// 模版路径
  18. /// </summary>
  19. public string TemplatePath { get; set; }
  20. /// <summary>
  21. /// 状态 0启用 1禁用
  22. /// </summary>
  23. public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
  24. public string GroupId { get ; set ; }
  25. }
  26. }