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.
35 lines
800 B
35 lines
800 B
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Znyc.Recruitment.Admin.Commons.Entitys;
|
|
|
|
namespace Znyc.Recruitment.Admin.Security.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 意见反馈图片表
|
|
/// </summary>
|
|
[Table("rm_feedback_pic")]
|
|
[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; }
|
|
|
|
}
|
|
}
|
|
|