旧版报表、仓库
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.

40 lines
979 B

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_data")]
public partial class df_config_data
{
[Key]
[Column(Order = 0)]
[StringLength(100)]
public string DATAID { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(40)]
public string ENGDISPLAYNAME { get; set; }
[StringLength(40)]
public string LOCALDISPLAYNAME { get; set; }
[Required]
[StringLength(3)]
public string SEQUENCE { get; set; }
[StringLength(50)]
public string FORMULA { get; set; }
[Required]
[StringLength(64)]
public string COLLUMNTYPE { get; set; }
[StringLength(255)]
public string REMARK { get; set; }
}
}