using CZFW.Framework.Attributes;
using CZFW.Framework.Model.Entity;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace CZKJ.GBRS2.Entity
{
///
/// 上传文件
///
[Table("cz_gbrs2_files")]
public class FilesEntity:EntityBase
{
///
/// 名称
///
[Display(Name = "名称")]
[StringLength(64)]
[Required(ErrorMessage = "不能为空")]
public string Name { get; set; }
///
/// 文件名称
///
[Display(Name = "文件名称")]
[StringLength(128)]
[Invisible]
public string FileName { get; set; }
///
/// 简历文件
///
[Display(Name = "文件Url")]
[StringLength(1024)]
[Invisible]
public string FileUrl { get; set; }
}
}