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.
70 lines
1.7 KiB
C#
70 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 规则用户反馈报文详情
|
|
/// </summary>
|
|
public class RulesEngineUserFeedBackMessageInfo
|
|
{
|
|
/// <summary>
|
|
/// 表头
|
|
/// </summary>
|
|
public RulesEngineUserFeedBackHead Head { get; set; }
|
|
|
|
/// <summary>
|
|
/// 表体
|
|
/// </summary>
|
|
public RulesEngineUserFeedBackMain Main { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 报文表头
|
|
/// </summary>
|
|
public class RulesEngineUserFeedBackHead : WebAPIHeadBase
|
|
{
|
|
/// <summary>
|
|
/// 请求授权KEY
|
|
/// </summary>
|
|
/// <example>FQbjpRF6vgrrGqxdcArDHtuQQqbXhefn+1KY28aeNUho7dL25glogc0n1uIJUwsCdsEhTdWM0w6qj7HgxWi9nD0r3aONCdP+nOYtRx2+BvA=</example>
|
|
[Required(ErrorMessage = "必填")]
|
|
public string SenderKey { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 报文表体
|
|
/// </summary>
|
|
public class RulesEngineUserFeedBackMain
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|