lixiaojun
2025-04-09 0f99680aff09e91f521b5909aab42811c1c3e6f1
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_project_prop_value")]
    public class XhsProjectPropValue : Yw.Entity.BaseEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public XhsProjectPropValue() { }
 
        /// <summary>
        /// 
        /// </summary>
        public XhsProjectPropValue(XhsProjectPropValue 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 XhsProjectPropValue Clone()
        {
            return (XhsProjectPropValue)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}