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.
|
- 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
- {
- /// <summary>
- /// 工艺id
- /// </summary>
- public string DevicetechnologyId { get; set; }
- /// <summary>
- /// 动作名称
- /// </summary>
- public string ActionName { get; set; }
- /// <summary>
- /// 类型 (1 输入框 2下拉框)
- /// </summary>
- public string ActionType { get; set; }
- /// <summary>
- /// 类型值(jsong格式)
- /// </summary>
- public string ActionValue { get; set; }
- /// <summary>
- /// 单位
- /// </summary>
- public string Unit { get; set; }
- /// <summary>
- /// 是否绑定物料
- /// </summary>
- public bool? IsBatch { get; set; }
- /// <summary>
- /// 排序
- /// </summary>
- public int Sort { get; set; }
- public string GroupId { get; set; }
- }
- }
|