using System.ComponentModel.DataAnnotations.Schema;
namespace YLErp.DBModels
{
[Table("files_template")]
public class files_template : DBModelWithOperator
{
public static string LogClass = "files_template";
///
/// 模板编号
///
[DisplayName("模板编号")]
public string Code { get; set; }
///
/// 末班名称
///
[DisplayName("末班名称")]
public string Name { get; set; }
///
/// 类型
///
[DisplayName("类型")]
public string Type { get; set; }
///
/// 地址
///
[DisplayName("地址")]
public string Paths { get; set; }
///
/// 模板文件名称
///
[DisplayName("模板文件名称")]
public string FileName { get; set; }
}
}