基础服务api
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

BPA_Product.cs 759 B

11 个月前
12345678910111213141516171819202122232425262728
  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.Product
  10. {
  11. [SugarTable("bpa_product")]
  12. public class BPA_Product : IBaseEntity
  13. {
  14. public string Name { get; set; }
  15. public string Key { get; set; }
  16. /// <summary>
  17. /// 状态 0启用 1禁用
  18. /// </summary>
  19. public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
  20. //public string GroupId { get; set; }
  21. public string Code { get; set; }
  22. /// <summary>
  23. /// 备注
  24. /// </summary>
  25. public string Remark { get; set; }
  26. }
  27. }