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

29 lines
759 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.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. }