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.
37 lines
921 B
37 lines
921 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_eqp_paraconfig")]
|
||
|
public partial class df_eqp_paraconfig
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(45)]
|
||
|
public string EqpID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(45)]
|
||
|
public string ParaName { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string StandardValues { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string CurrentValues { get; set; }
|
||
|
|
||
|
[StringLength(2)]
|
||
|
public string Flg { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string SparePartID { get; set; }
|
||
|
|
||
|
public DateTime? LastUpDateTime { get; set; }
|
||
|
}
|
||
|
}
|