仪表盘
版本库
文件存储
活动
搜索
登录
TProduct
/
Client.V1.7
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
大改
tx
9 天以前
e0b138b3e057de6f57021e6c8963868f5c5acc5a
[TProduct/Client.V1.7.git]
/
TProduct.UserSetting
/
Setting
/
ProductSetting.cs
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";
}
}