using BPA.SAAS.Manage.Core.Base; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Core.Device { public class BPA_DeviceTechnologyAction: IBaseEntity, IGroupId { /// /// 工艺id /// public string DevicetechnologyId { get; set; } /// /// 动作名称 /// public string ActionName { get; set; } /// /// 类型 (1 输入框 2下拉框) /// public string ActionType { get; set; } /// /// 类型值(jsong格式) /// public string ActionValue { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 是否绑定物料 /// public bool? IsBatch { get; set; } /// /// 排序 /// public int Sort { get; set; } public string GroupId { get; set; } } }