You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.8 KiB
43 lines
1.8 KiB
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace Znyc.CloudCar.Model.Entities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 意见反馈表
|
||
|
/// </summary>
|
||
|
[Table(Name = "feedback")]
|
||
|
public class FeedbackEntity : EntityBase
|
||
|
{
|
||
|
public long UserId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 反馈内容
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 500)]
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Content”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string Content { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Content”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
public int State { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 处理结果
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 250)]
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Result”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string Result { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Result”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 250)]
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Note”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string Note { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Note”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
}
|
||
|
}
|