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 GoodsTechnologyActionListView { public string DeviceId { get; set; } public string WarehousrTemplateId { get; set; } public string GoodsAttributeId { get; set; } public string DeviceName { get; set; } public List Data { get; set; } } public class GoodsTechnologyActionView { public string Id { get; set; } /// /// 步骤名称 /// 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 DateTime CreateAt { get; set; } public string GroupId { get; set; } public int IsDeleted { get; set; } public int Sort { get; set; } public string GoodsId { get; set; } public string DeviceId { get; set; } public string WarehousrTemplateId { get; set; } } }