lixiaojun
2024-12-10 5587341ac6e50a040972d33d83de632e7d0c87af
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
namespace HStation.Entity
{
    /// <summary>
    /// 项目方案属性值
    /// </summary>
    [SugarTable("xhs_scheme_prop_value")]
    public class XhsSchemePropValue : Yw.Entity.BaseEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public XhsSchemePropValue() { }
 
        /// <summary>
        /// 
        /// </summary>
        public XhsSchemePropValue(XhsSchemePropValue rhs) : base(rhs)
        {
            this.SysType = rhs.SysType;
            this.SysID = rhs.SysID;
            this.PropID = rhs.PropID;
            this.PropValue = rhs.PropValue;
        }
 
        /// <summary>
        /// 系统类型
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string SysType { get; set; }
 
        /// <summary>
        /// 系统id
        /// </summary>
        public long SysID { get; set; }
 
        /// <summary>
        /// 属性id
        /// </summary>
        public long PropID { get; set; }
 
        /// <summary>
        /// 属性值
        /// </summary>    
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        public string PropValue { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public XhsSchemePropValue Clone()
        {
            return (XhsSchemePropValue)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}