CY_ECommercePlatform/CY.Model/OA/OA_ShebeiWeixiu.cs
@@ -24,6 +24,7 @@
        public decimal? WeixiuPrice { get; set; }
        public int? Zerenren { get; set; }
        public string ZerenrenName { get; set; }
        public string ShebeiZerenrenName { get; set; }
        public decimal? DanzePrice { get; set; }
        public int? WeixiuShebeiId { get; set; }
@@ -32,9 +33,39 @@
        public int? FukuanshenqingId { get; set; }
        public string Fukuanfangshi { get; set; }
        public string FukuanfangshiName { get
            {
                if (string.IsNullOrEmpty(this.Fukuanfangshi))
                {
                    return "";
                }
                else if (this.Fukuanfangshi == "1")
                {
                    return "对公转账";
                }
                else if (this.Fukuanfangshi == "2")
                {
                    return "现金支付";
                }
                else
                {
                    return "";
                }
            }
        }
        //是否付费  1是2否
        public int? Shifoufufei { get; set; }
        //维修审批是否通过  1批准2不批准
        public int? ApprovalStatus { get; set; }
        public DateTime? CreateTime { get; set; }
        public string Creator{ get; set; }
@@ -287,7 +318,21 @@
                this.CateName = isChange ? MyConvert.ConvertToString(value) : CateName;
                theValue = this.CateName;
            }
            else if ("ShebeiZerenrenName".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 22)
            {
                this.ShebeiZerenrenName = isChange ? MyConvert.ConvertToString(value) : ShebeiZerenrenName;
                theValue = this.ShebeiZerenrenName;
            }
            else if ("ApprovalStatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 23)
            {
                this.ApprovalStatus = isChange ? MyConvert.ConvertToInt32(value) : ApprovalStatus;
                theValue = this.ApprovalStatus;
            }
            else if ("Fukuanfangshi".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 24)
            {
                this.Fukuanfangshi = isChange ? MyConvert.ConvertToString(value) : Fukuanfangshi;
                theValue = this.Fukuanfangshi;
            }
            
            return theValue;