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.

BPA_DevicePushRecode.cs 859 B

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