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.
57 lines
1.4 KiB
57 lines
1.4 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_report_condition")]
|
||
|
public partial class df_report_condition
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(100)]
|
||
|
public string CONDITIONID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(40)]
|
||
|
public string ENGDISPLAYNAME { get; set; }
|
||
|
|
||
|
[StringLength(40)]
|
||
|
public string LOCALDISPLAYNAME { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(32)]
|
||
|
public string TOOLBOX { get; set; }
|
||
|
|
||
|
[StringLength(64)]
|
||
|
public string DEFAULTVALUE { get; set; }
|
||
|
|
||
|
[StringLength(32)]
|
||
|
public string COLOR { get; set; }
|
||
|
|
||
|
[Column(TypeName = "char")]
|
||
|
[Required]
|
||
|
[StringLength(1)]
|
||
|
public string ISVISIBILITY { get; set; }
|
||
|
|
||
|
[StringLength(455)]
|
||
|
public string LINKEVENT { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(3)]
|
||
|
public string SEQUENCE { get; set; }
|
||
|
|
||
|
[StringLength(455)]
|
||
|
public string LINKDESCRIPTION { get; set; }
|
||
|
|
||
|
[StringLength(1024)]
|
||
|
public string REGEX { get; set; }
|
||
|
|
||
|
[StringLength(255)]
|
||
|
public string REMARK { get; set; }
|
||
|
}
|
||
|
}
|