仪表盘
版本库
文件存储
活动
搜索
登录
TProduct
/
Client.V1.7
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
添加无产品测试
tx
2025-04-10
2538101febc78f525945da72c7cdcb2589f9e6ea
[TProduct/Client.V1.7.git]
/
TProduct.WinFrmUI
/
TProduct.WinFrmUI.GlobalParas
/
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";
}
}