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

30 lines
773 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_productvesion")]
  12. public class BPA_ProductVesion : IBaseEntity
  13. {
  14. public string Vesion { get; set; }
  15. /// <summary>
  16. /// 所属产品
  17. /// </summary>
  18. public string ProductId { get; set; }
  19. /// <summary>
  20. /// 模版路径
  21. /// </summary>
  22. public string TemplatePath { get; set; }
  23. /// <summary>
  24. /// 状态 0启用 1禁用
  25. /// </summary>
  26. public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
  27. }
  28. }