tuiwucarrer/Admin.NET/Admin.NET.Core/Entity/CePing/BusFeedback.cs

40 lines
955 B
C#

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
{
/// <summary>
/// 意见反馈表
/// </summary>
[SugarTable("bus_feedback_info", "意见反馈表")]
public class BusFeedback: EntityBase
{
/// <summary>
/// 意见类型
/// </summary>
[SugarColumn(ColumnDescription = "意见类型")]
public int Type { get; set; }
/// <summary>
/// 家长Id
/// </summary>
[SugarColumn(ColumnDescription = "家长Id")]
public long FamilyId { get; set; }
/// <summary>
/// 意见内容
/// </summary>
[SugarColumn(ColumnDescription = "意见内容")]
[Required, MaxLength(2000)]
public string Context { get; set; }
}
}