using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core
{
///
/// 意见反馈表
///
[SugarTable("bus_feedback_info", "意见反馈表")]
public class BusFeedback: EntityBase
{
///
/// 意见类型
///
[SugarColumn(ColumnDescription = "意见类型")]
public int Type { get; set; }
///
/// 家长Id
///
[SugarColumn(ColumnDescription = "家长Id")]
public long FamilyId { get; set; }
///
/// 意见内容
///
[SugarColumn(ColumnDescription = "意见内容")]
[Required, MaxLength(2000)]
public string Context { get; set; }
}
}