1
2
3
4
5
6
7
8
9
10
11
12
13
| namespace IStation.DAL
| {
| /// <summary>
| /// 泵曲线映射
| /// </summary>
| public class PumpCurveMapping : BaseDAL_Sorter<Entity.PumpCurveMapping>
| {
| public override string FileName
| {
| get { return FileHelper.GetFilePath<Entity.PumpCurveMapping>(Settings.Project.ID); }
| }
| }
| }
|
|