| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 修改时间 |
| | | /// </summary> |
| | | public DateTime? chaxuntimestart |
| | | { |
| | | get; |
| | | set; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 修改时间 |
| | | /// </summary> |
| | | public DateTime? chaxuntimeend |
| | | { |
| | | get; |
| | | set; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 回款客户 |
| | | /// </summary> |
| | | public decimal? huikuankehu |
| | | { |
| | | get; |
| | | set; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 未回款客户 |
| | | /// </summary> |
| | | public decimal? weihuikuankehu |
| | | { |
| | | get; |
| | | set; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 未付款 |
| | | /// </summary> |
| | | public decimal UnPayedMoney |
| | |
| | | this.chaxuntime = isChange ? MyConvert.ConvertToDateTime(value) : chaxuntime; |
| | | theValue = this.chaxuntime; |
| | | } |
| | | else if ("chaxuntimestart".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 49) |
| | | { |
| | | this.chaxuntimestart = isChange ? MyConvert.ConvertToDateTime(value) : chaxuntimestart; |
| | | theValue = this.chaxuntimestart; |
| | | } |
| | | else if ("chaxuntimeend".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 50) |
| | | { |
| | | this.chaxuntimeend = isChange ? MyConvert.ConvertToDateTime(value) : chaxuntimeend; |
| | | theValue = this.chaxuntimeend; |
| | | } |
| | | else if ("huikuankehu".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 51) |
| | | { |
| | | this.huikuankehu = isChange ? MyConvert.ConvertToDecimal(value) : huikuankehu; |
| | | theValue = this.huikuankehu; |
| | | } |
| | | else if ("weihuikuankehu".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 52) |
| | | { |
| | | this.weihuikuankehu = isChange ? MyConvert.ConvertToDecimal(value) : weihuikuankehu; |
| | | theValue = this.weihuikuankehu; |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |