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.
30 lines
956 B
30 lines
956 B
2 years ago
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace Znyc.CloudCar.Model.Entities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 意见反馈图片表
|
||
|
/// </summary>
|
||
|
[Table(Name = "feedback_picture")]
|
||
|
public class FeedbackPicEntity : EntityBase
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 意见反馈Id
|
||
|
/// </summary>
|
||
|
public long FeedbackId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 图片URL
|
||
|
/// </summary>
|
||
|
[Column(StringLength = 125)]
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“PicUrl”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public string PicUrl { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“PicUrl”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
public int Sort { get; set; }
|
||
|
}
|
||
|
}
|