You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
974 B

using GDZZ.Core;
using System;
using System.ComponentModel.DataAnnotations;
namespace GDZZ.Application
{
/// <summary>
/// 意见反馈输入参数
/// </summary>
public class FeedBackInput : PageInputBase
{
2 years ago
/// <summary>
/// 反馈意见
/// </summary>
public virtual string messsage { get; set; }
}
public class AddFeedBackInput : FeedBackInput
{
}
public class DeleteFeedBackInput
{
/// <summary>
/// 主键Id
/// </summary>
[Required(ErrorMessage = "主键Id不能为空")]
public long Id { get; set; }
}
public class UpdateFeedBackInput : FeedBackInput
{
/// <summary>
/// 主键Id
/// </summary>
[Required(ErrorMessage = "主键Id不能为空")]
public long Id { get; set; }
}
public class QueryeFeedBackInput : DeleteFeedBackInput
{
}
}