using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 规则用户反馈 /// public class RulesEngineUserFeedBackDto { /// /// 规则名称 /// public string ruleName { get; set; } /// /// 规则提示 /// public string ruleNotice { get; set; } /// /// 规则反馈用户名 /// public string submitUser { get; set; } /// /// 规则反馈意见类型 /// public string opinionType { get; set; } /// /// 规则反馈意见内容 /// public string opinionContent { get; set; } } }