12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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
- {
- /// <summary>
- /// 上传文件
- /// </summary>
- [Table("cz_gbrs2_files")]
- public class FilesEntity:EntityBase
- {
- /// <summary>
- /// 名称
- /// </summary>
- [Display(Name = "名称")]
- [StringLength(64)]
- [Required(ErrorMessage = "不能为空")]
- public string Name { get; set; }
- /// <summary>
- /// 文件名称
- /// </summary>
- [Display(Name = "文件名称")]
- [StringLength(128)]
- [Invisible]
- public string FileName { get; set; }
- /// <summary>
- /// 简历文件
- /// </summary>
- [Display(Name = "文件Url")]
- [StringLength(1024)]
- [Invisible]
- public string FileUrl { get; set; }
- }
- }
|