username@email.com
2026-02-12 b5a024eee5ec82287097a2b310cacd8a357835ed
CY_ECommercePlatform/CY.Model/OA/OA_WageAwardPunish.cs
@@ -32,6 +32,15 @@
        /// </summary>   
        public int? Shifoushensu { get; set; }
        /// <summary>
        /// 来源类型   0 工作workplan  1  问题反馈
        /// </summary>
        public int? LaiyuanType { get; set; }
        public Guid? WentiId { get; set; }
        public string ShifoushensuName
        {
            get
@@ -382,6 +391,17 @@
                this.Shifoushensu = isChange ? MyConvert.ConvertToInt32(value) : Shifoushensu;
                theValue = this.Shifoushensu;
            }
            else if ("LaiyuanType".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 20)
            {
                this.LaiyuanType = isChange ? MyConvert.ConvertToInt32(value) : LaiyuanType;
                theValue = this.LaiyuanType;
            }
            else if ("WentiId".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 21)
            {
                this.WentiId = isChange ? MyConvert.ConvertToGuid(value) : WentiId;
                theValue = this.WentiId;
            }
            return theValue;
        }