forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMeasureRel_CE.cs
64 lines (56 loc) · 1.3 KB
/
MeasureRel_CE.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 代码工具自动生成
* Create Date: 2014/05/09 23:01:01
* Blog: http://www.cnblogs.com/qingyuan/
* Copyright: 太数智能科技(上海)有限公司
* Description: Git.Framework
*
* Revision History:
* Date Author Description
* 2014/05/09 23:01:01
*********************************************************************************/
using System;
using System.Text;
using System.Data;
namespace Git.Storage.RoseEntity
{
[Serializable]
public partial class MeasureRel_CE
{
public MeasureRel_CE()
{
}
private Int32 _ID;
public Int32 ID
{
set { this._ID = value; }
get { return this._ID;}
}
private string _SN;
public string SN
{
set { this._SN = value; }
get { return this._SN;}
}
private string _MeasureSource;
public string MeasureSource
{
set { this._MeasureSource = value; }
get { return this._MeasureSource;}
}
private string _MeasureTarget;
public string MeasureTarget
{
set { this._MeasureTarget = value; }
get { return this._MeasureTarget;}
}
private double _Rate;
public double Rate
{
set { this._Rate = value; }
get { return this._Rate;}
}
}
}