| | |
| | | /// </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 |
| | |
| | | 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; |
| | | } |
| | | |