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