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.
35 lines
887 B
35 lines
887 B
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_controlbasic")]
|
|
public partial class df_controlbasic
|
|
{
|
|
[Key]
|
|
public int ControlID { get; set; }
|
|
|
|
public int? FunctionID { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ControlName { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ControlType { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string DefaultEnable { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string DefaultVisible { get; set; }
|
|
|
|
[StringLength(145)]
|
|
public string Remark { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string State { get; set; }
|
|
}
|
|
}
|
|
|