schangxiang@126.com
2024-09-10 03de13b2a5357916a7b6ec2f3e8a9ff6ca2e3970
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Furion.Extras.iWare.Wms.Util.LowCode.Factor.Interface;
 
namespace Furion.Extras.iWare.Wms.Util.LowCode
{
    /// <summary>
    /// 要素项
    /// </summary>
    public class EssentialFactor
    {
        /// <summary>
        /// 要素名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 字段集
        /// </summary>
        public IList<IFactor> Factors { get; set; } = new List<IFactor>();
    }
}