招聘后台
 
 

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; }
}
}