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.
69 lines
1.6 KiB
69 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_module_power")]
|
||
|
public partial class df_module_power
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(20)]
|
||
|
public string Q1_ID { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(40)]
|
||
|
public string GRADE_TYPE { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(40)]
|
||
|
public string NAMEPLATE_TYPE { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 2)]
|
||
|
[StringLength(40)]
|
||
|
public string CELL_SIZE { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 3)]
|
||
|
public float POWER_GRADE { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string IMP_GRADE { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 4)]
|
||
|
public double UPPERPOWER { get; set; }
|
||
|
|
||
|
public double LOWERPOWER { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 5)]
|
||
|
public double UPPERIMP { get; set; }
|
||
|
|
||
|
public double LOWERIMP { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(3)]
|
||
|
public string SEQUENCE { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string power_grade_type { get; set; }
|
||
|
|
||
|
public DateTime? Create_Time { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string UserID { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string Computer { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string Location { get; set; }
|
||
|
}
|
||
|
}
|