tuiwucarrer/Admin.NET/Admin.NET.Application/Service/CePing/BusFeedback/Dto/BusFeedbackOutput.cs

32 lines
644 B
C#

using System;
namespace Admin.NET.Application
{
/// <summary>
/// 意见反馈表输出参数
/// </summary>
public class BusFeedbackOutput
{
/// <summary>
/// 意见类型
/// </summary>
public int Type { get; set; }
/// <summary>
/// 家长Id
/// </summary>
public long FamilyId { get; set; }
/// <summary>
/// 意见内容
/// </summary>
public string Context { get; set; }
/// <summary>
/// Id主键
/// </summary>
public long Id { get; set; }
}
}