基础服务api
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

39 řádky
1.3 KiB

  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.DataBase
  10. {
  11. [SugarTable("bpa_goodsInfo")]
  12. public class BPA_GoodsInfo : IBaseEntity, IGroupId
  13. {
  14. public string Name { get; set; }
  15. public string Descritption { get; set; }
  16. public string ImgUrl { get; set; }
  17. public int ImgMode { get; set; }
  18. public int Sort { get; set; }
  19. public string Key { get; set; }
  20. public string Code { get; set; }
  21. public decimal Price { get; set; }
  22. public long AutoKey { get; set; }
  23. public string GoodsUintId { get; set; }
  24. public bool IsWeigh { get; set; }
  25. public string ForeignKeyRe { get; set; }
  26. public string Design { get; set; }
  27. public string DefaultMate { get; set; }
  28. public bool IsAttrubute { get; set; }
  29. public string GoodsTypeId { get; set; }
  30. /// <summary>
  31. /// 状态 【正常 停用】默认 正常
  32. /// </summary>
  33. [SugarColumn(ColumnDataType = "int", ColumnDescription = "状态", IsNullable = false)]
  34. public CommonStatus Status { get; set; } = CommonStatus.ENABLE;
  35. public string GroupId { get; set; }
  36. }
  37. }