后厨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.

28 lines
622 B

  1. using BPA.SAAS.KitChenManage.Core.Base;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.KitChenManage.Core.Model
  9. {
  10. [SugarTable("bpa_devicegoods")]
  11. public class BPA_DeviceGoods:IBaseEntity, IGroupId
  12. {
  13. public string DeviceId { get; set; }
  14. /// <summary>
  15. /// 设备AutoKey
  16. /// </summary>
  17. public long AutoKey { get; set; }
  18. public string GoodsId { get; set; }
  19. public string GoodsName { get; set;}
  20. public string GroupId { get; set; }
  21. }
  22. }