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