|
@@ -62,6 +62,9 @@ namespace DataSharing.Application.Receivers.YiBin
|
|
|
data.CreationTime = dto.CreationTime;
|
|
|
data.FiledTime = dto.FiledTime;
|
|
|
data.FileOpinion = dto.ArrangementOpinion;
|
|
|
+ data.ActualHandleOrgCode = dto.ActualHandleOrgCode;
|
|
|
+ data.ActualHandleOrgName = dto.ActualHandleOrgName;
|
|
|
+ data.AreaCode = string.IsNullOrEmpty(dto.AreaCode) == true ? "" : dto.AreaCode.Substring(0, 6);
|
|
|
rows = await _db.Updateable(data).ExecuteCommandAsync();
|
|
|
}
|
|
|
else
|
|
@@ -80,6 +83,9 @@ namespace DataSharing.Application.Receivers.YiBin
|
|
|
CreationTime = dto.CreationTime,
|
|
|
FiledTime = dto.FiledTime,
|
|
|
FileOpinion = dto.ArrangementOpinion,
|
|
|
+ ActualHandleOrgCode = dto.ActualHandleOrgCode,
|
|
|
+ ActualHandleOrgName = dto.ActualHandleOrgName,
|
|
|
+ AreaCode = string.IsNullOrEmpty(dto.AreaCode) == true ? "" : dto.AreaCode.Substring(0, 6)
|
|
|
};
|
|
|
rows = await _db.Insertable(data).ExecuteCommandAsync();
|
|
|
}
|