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.Product
{
public class BPA_ProductFunctionAction : IBaseEntity
{
///
/// 功能id
///
public string ProductFunctionId { 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; }
}
}