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.
67 lines
1.6 KiB
67 lines
1.6 KiB
2 years ago
|
namespace Warehouse.Models.mesMysqlModel
|
||
|
{
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using System.Data.Entity.Spatial;
|
||
|
|
||
|
[Table("js_mes.df_config_functions")]
|
||
|
public partial class df_config_functions
|
||
|
{
|
||
|
[Required]
|
||
|
[StringLength(255)]
|
||
|
public string ENGACCESSNAME { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(255)]
|
||
|
public string LOCALACCESSNAME { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(255)]
|
||
|
public string ENGDISPLAYNAME { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(255)]
|
||
|
public string LOCALDISPLAYNAME { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(40)]
|
||
|
public string WORKSHOP { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[StringLength(255)]
|
||
|
public string FUNCTIONNAME { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(100)]
|
||
|
public string CONDITIONID { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(100)]
|
||
|
public string DATAID { get; set; }
|
||
|
|
||
|
[StringLength(64)]
|
||
|
public string EXCELTEMPLATE { get; set; }
|
||
|
|
||
|
[StringLength(40)]
|
||
|
public string SERVICETYPE { get; set; }
|
||
|
|
||
|
[Column(TypeName = "char")]
|
||
|
[Required]
|
||
|
[StringLength(1)]
|
||
|
public string ISREPORT { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string DISPLAYTYPE { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string Assembly { get; set; }
|
||
|
|
||
|
[StringLength(5)]
|
||
|
public string State { get; set; }
|
||
|
|
||
|
public int? MenuShowID { get; set; }
|
||
|
}
|
||
|
}
|