CY_ECommercePlatform/CY.Model/OA/OA_WorkPlan.cs
@@ -43,6 +43,66 @@
        private string _rewardcontent;
        private string _rewardresult;
        private decimal? _rewardmoney;
        public int? HoubufapiaoStatus { get; set; }
        public string Fujian { get; set; }
        public string Fapiao { get; set; }
        public string HoubufapiaoStatusName { get
            {
                if(HoubufapiaoStatus.HasValue)
                {
                    if(HoubufapiaoStatus == 1)
                    {
                        return "有发票";
                    }
                    else if (HoubufapiaoStatus == 2)
                    {
                        return "后补发票";
                    }
                    else if (HoubufapiaoStatus == 3)
                    {
                        return "无发票";
                    }else
                        return "";
                }
                else
                {
                    return "";
                }
            }
        }
        public string EvaluationStatusName
        {
            get
            {
                if (EvaluationStatus.HasValue)
                {
                    if (EvaluationStatus == 1)
                    {
                        return "已付款";
                    }
                    else if (EvaluationStatus == 2)
                    {
                        return "未付款";
                    }
                    else
                        return "未付款";
                }
                else
                {
                    return "";
                }
            }
        }
        public int Nengfoushenpi { get; set; }
        public int Nengfoushanchu { get; set; }
        public int? WufapiaoStatus { get; set; }
        /// <summary>
        /// 编号
@@ -297,6 +357,41 @@
                _approvalstatus = value;
            }
        }
        public string ApprovalStatusName
        {
            get
            {
                if (ApprovalStatus.HasValue)
                {
                    if (ApprovalStatus == 0)
                    {
                        return "未审批";
                    }
                    else if (ApprovalStatus == 1)
                    {
                        return "批准";
                    }
                    else if (ApprovalStatus == 2)
                    {
                        return "不批准";
                    }
                    else if (ApprovalStatus == 3)
                    {
                        return "未提交";
                    }
                    else
                        return "未审批";
                }
                else
                {
                    return "";
                }
            }
        }
        /// <summary>
        /// 审核时间
        /// </summary>      
@@ -747,6 +842,16 @@
                this.AllFine = isChange ? MyConvert.ConvertToDecimal(value) : AllFine;
                theValue = this.AllFine;
            }
            else if ("HoubufapiaoStatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 30)
            {
                this.HoubufapiaoStatus = isChange ? MyConvert.ConvertToInt32(value) : HoubufapiaoStatus;
                theValue = this.HoubufapiaoStatus;
            }
            else if ("WufapiaoStatus".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 30)
            {
                this.WufapiaoStatus = isChange ? MyConvert.ConvertToInt32(value) : WufapiaoStatus;
                theValue = this.WufapiaoStatus;
            }
            return theValue;
        }
        #endregion Visiter