| | |
| | | public System.DateTime? OverTime { get; set; } |
| | | |
| | | |
| | | |
| | | public System.String CreateBy { get; set; } |
| | | |
| | | public System.String UpDataBy { get; set; } |
| | | |
| | | public DateTime? CreateTime { get; set; } |
| | | |
| | | public DateTime? UpdataTime { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 送货数量 |
| | | /// </summary> |
| | | public System.Int32 DingdanNumber { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 送货数量 |
| | | /// </summary> |
| | | public System.Int32 WeisongNumber { get; set; } |
| | | |
| | | #endregion Model |
| | | |
| | | #region Visiter |
| | |
| | | } |
| | | |
| | | |
| | | else if ("CreateBy".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 10) |
| | | { |
| | | this.CreateBy = isChange ? MyConvert.ConvertToString(value) : CreateBy; |
| | | theValue = this.CreateBy; |
| | | } |
| | | else if ("UpDataBy".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 11) |
| | | { |
| | | this.UpDataBy = isChange ? MyConvert.ConvertToString(value) : UpDataBy; |
| | | theValue = this.UpDataBy; |
| | | } |
| | | else if ("CreateTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 12) |
| | | { |
| | | this.CreateTime = isChange ? MyConvert.ConvertToDateTime(value) : CreateTime; |
| | | theValue = this.CreateTime; |
| | | } |
| | | else if ("UpdataTime".Equals(name, StringComparison.CurrentCultureIgnoreCase) || index == 13) |
| | | { |
| | | this.UpdataTime = isChange ? MyConvert.ConvertToDateTime(value) : UpdataTime; |
| | | theValue = this.UpdataTime; |
| | | } |
| | | |
| | | |
| | | return theValue; |
| | | } |
| | | |