tx
9 天以前 e0b138b3e057de6f57021e6c8963868f5c5acc5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace TProduct.SettingModel
{
    /// <summary>
    /// 产品管理 
    /// </summary>
    public class ProductSetting
    {
        /// <summary>
        /// 默认供电方式
        /// </summary>
        public int SupplyCurrentType { get; set; } = (int)Model.eSupplyCurrentType.交流;
 
        /// <summary>
        /// 默认相位数
        /// </summary>
        public int SupplyCurrentPhase { get; set; } = (int)Model.eSupplyCurrentPhase.三相;
 
        /// <summary>
        /// 默认电压列表
        /// </summary>
        public string Voltages { get; set; } = "220,380,400,460,660,690,3300,6000,10000";
    }
}