You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 规则用户反馈
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RulesEngineUserFeedBackDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 规则名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ruleName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 规则提示
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ruleNotice { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 规则反馈用户名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string submitUser { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 规则反馈意见类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string opinionType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 规则反馈意见内容
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string opinionContent { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|