username@email.com
2026-02-25 b73be4c097b5e12c9534fbefd8df54b404c05cb0
CY_ECommercePlatform/CY.Model/OA/OA_WageAwardPunish.cs
@@ -28,6 +28,48 @@
        private string _operator;
        /// <summary>
        /// 编号   0 未申诉  1 已申诉  2 申诉成功   3 申诉失败
        /// </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
            {
                if(!Shifoushensu.HasValue || Shifoushensu.Value == 0)
                {
                    return "未申诉";
                }
                else if ( Shifoushensu.Value == 1)
                {
                    return "已申诉";
                }
                else if (Shifoushensu.Value == 2)
                {
                    return "申诉成功";
                }
                else if (Shifoushensu.Value == 3)
                {
                    return "申诉失败";
                }
                else
                {
                    return "未申诉";
                }
            }
        }
        /// <summary>
        /// 编号
        /// </summary>      
        public int? Keyid
@@ -344,6 +386,22 @@
                this.PushMoney = isChange ? MyConvert.ConvertToDecimal(value) : PushMoney;
                theValue = this.PushMoney;
            }
            else if ("Shifoushensu".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 19)
            {
                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;
        }