修改规则用户反馈

optimize
jianghaiqing 1 year ago
parent f068d82dd8
commit 7f614b889f

@ -1320,7 +1320,8 @@ namespace Myshipping.Application
result.succ = true;
result.msg = "查询成功";
result.rows = rlt.rows;
if (rlt.rows != null)
result.rows = JSON.Deserialize<List<RulesEngineUserFeedBackCollectionLogShowDto>>(JSON.Serialize(rlt.rows));
}
catch (Exception ex)
{
@ -1368,6 +1369,7 @@ namespace Myshipping.Application
{
var userResult = await res.Content.ReadAsStringAsync();
_logger.LogInformation("批次={no} 对应请求报文完成 userResult={userResult}", batchNo, userResult);
model = JSON.Deserialize<RulesEngineWebApiResult>(userResult);
}
}

@ -0,0 +1,64 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
///
/// </summary>
public class RulesEngineUserFeedBackCollectionLogShowDto
{
/// <summary>
/// 反馈用户 用来记录反馈用户的名称
/// </summary>
public string submitUser { get; set; }
/// <summary>
/// 创建日期
/// </summary>
public DateTime genDate { get; set; }
/// <summary>
/// 意见类型
/// </summary>
public string opinionType { get; set; }
/// <summary>
/// 意见类型名称
/// </summary>
public string opinionTypeName { get; set; }
/// <summary>
/// 意见内容
/// </summary>
public string opinionContent { get; set; }
/// <summary>
/// 状态
/// </summary>
public string status { get; set; }
/// <summary>
/// 状态名称
/// </summary>
public string statusName { get; set; }
/// <summary>
/// 处理人
/// </summary>
public string operEr { get; set; }
/// <summary>
/// 处理人名称
/// </summary>
public string operName { get; set; }
/// <summary>
/// 处理意见
/// </summary>
public string operContent { get; set; }
}
}
Loading…
Cancel
Save