?? unit.cs
字號:
?using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Utility.Unit {
public class Unit {
private UnitEnum name;
public UnitEnum Name {
get {
return name;
}
set {
name = value;
}
}
private string label;
public string Label {
get {
return label;
}
set {
label = value;
}
}
private decimal proportion;
public decimal Proportion {
get {
return proportion;
}
set {
proportion = value;
}
}
//public Unit() {
//}
public Unit(UnitEnum name,string label, decimal proportion) {
this.name = name;
this.label = label;
this.proportion = proportion;
}
}
public enum UnitEnum {
Depth,
Length,
Diameter,
Size,
Area,
Volume,
Capacity,
Velocity,
PumpOutput,
DeliveryCapacity,
PumpPressure,
Pressure,
Force,
Density,
FormationPressureGradient,
ShearStress,
ShearRate,
ConsistencyIndexK,
PlasticViscosity,
FunnelViscosity,
YieldPoint,
FilterLoss,
CakeThickNess,
Concentration,
Temperature,
Price,
Cost,
AngleRateOfChange,
GrainSize,
AnnulusUpwardVelocity,
ChipSlipRate,
Content,
Hardness,
LiquidUsage,
Weight,
NozzleSize,
GuantiArea,
ZuanGanShenChang,
ZuanGanLaLi,
Power,
UnitPower,
DrillingSpeed,
DrillingPipeCapacity,
PumpingSpeed,
Stroke
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -