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

32 lines
913 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_devicetechnology")]
  12. public class BPA_DeviceTechnology : IBaseEntity, IGroupId
  13. {
  14. /// <summary>
  15. /// 工艺名称
  16. /// </summary>
  17. public string Name { get; set; }
  18. /// <summary>
  19. /// 状态 0启用 1禁用
  20. /// </summary>
  21. public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
  22. public string GroupId { get; set; }
  23. [SugarColumn(ColumnDataType = "Nvarchar(255)", IsNullable = true)]
  24. public string ForeignKeyRe { get; set; }
  25. /// <summary>
  26. /// 设备版本
  27. /// </summary>
  28. public string DeviceVersionKey { get; set; }
  29. }
  30. }