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.
 
 

30 lines
859 B

  1. using BPA.KitChen.GroupMeal.Core.Entity.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.KitChen.GroupMeal.Core.Entity
  9. {
  10. [SugarTable("bpa_devicepushrecode")]
  11. public class BPA_DevicePushRecode : IBaseGroupIdEntity
  12. {
  13. public string DeviceId { get; set; }
  14. public string DeviceName { get; set; }
  15. /// <summary>
  16. /// 下发类型1商品 2物料 3配方 4工艺
  17. /// </summary>
  18. public int Type { get; set; }
  19. public string GroupId { get; set; }
  20. public string Topic { get; set; }
  21. [SugarColumn(ColumnDataType = "varchar(1000)")]
  22. public string DataResore { get; set; }
  23. public int DeviceAutoKey { get; set; }
  24. public string Description { get; set; }
  25. }
  26. }