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.
36 lines
795 B
36 lines
795 B
2 years ago
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using Znyc.Cloudcar.Admin.Commons.Entitys;
|
||
|
|
||
|
namespace Znyc.Cloudcar.Admin.Security.Entitys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 意见反馈图片表
|
||
|
/// </summary>
|
||
|
[Table("feedback_picture")]
|
||
|
[Serializable]
|
||
|
public class FeedbackPicEntity : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 意见反馈Id
|
||
|
/// </summary>
|
||
|
public long FeedbackId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 图片URL
|
||
|
/// </summary>
|
||
|
public string PicUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
public int Sort { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 图片是否有效
|
||
|
/// </summary>
|
||
|
public bool IsEnabled { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|