using BPA.SAAS.Manage.Core.Base; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Core.DataBase { [SugarTable("bpa_goodstechnologyaction")] public class BPA_GoodsTechnologyAction : IBaseEntity, IGroupId { /// /// 步骤名称 /// public string StepName { get; set; } /// /// 动作json /// public string ActionJson { get; set; } /// /// 商品属性id集合 /// public string GoodsAttributeId { get; set; } /// /// 是否物料 /// public bool IsBatch { get; set; } /// /// 动作value /// public string ChnologyId { get; set; } public string GroupId { get; set; } public int Sort { get; set; } public string GoodsId { get; set; } public string DeviceId { get; set; } } }