30 lines
655 B
C#
30 lines
655 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.NET.Core;
|
|
|
|
|
|
/// <summary>
|
|
/// 用户反馈表
|
|
/// </summary>
|
|
[SugarTable(null, "用户反馈表")]
|
|
[SysTable]
|
|
public class SysFeedBack : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "用户Id")]
|
|
public long CId { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "标题", IsNullable = true)]
|
|
public string Title { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "内容", IsNullable = true, Length = 800)]
|
|
public string Content { get; set; }
|
|
|
|
}
|