using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.DataBase.Dtos.GoodsTechnology { public class GoodsTechnologyActionBaseDto { public string Id { get; set; } /// /// 步骤名称 /// public string StepName { get; set; } /// /// 动作json /// public string ActionJson { get; set; } /// /// 商品属性id集合 /// public string GoodsAttributeId { get; set; } public string ChnologyId { get; set; } public int? Sort { get; set; } public bool IsBatch { get; set; } = false; public string GoodsId { get; set; } public string DeviceId { get; set; } public string WarehousrTemplateId { get; set; } } }