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

77 lines
1.8 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_his")]
public partial class df_module_power_his
{
[Key]
[Column(Order = 0)]
[StringLength(20)]
public string Q1_ID { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(40)]
public string GRADE_TYPE { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(40)]
public string NAMEPLATE_TYPE { get; set; }
[Key]
[Column(Order = 3)]
[StringLength(40)]
public string CELL_SIZE { get; set; }
[Key]
[Column(Order = 4)]
public float POWER_GRADE { get; set; }
[StringLength(10)]
public string IMP_GRADE { get; set; }
[Key]
[Column(Order = 5)]
public double UPPERPOWER { get; set; }
[Key]
[Column(Order = 6)]
public double LOWERPOWER { get; set; }
[Key]
[Column(Order = 7)]
public double UPPERIMP { get; set; }
[Key]
[Column(Order = 8)]
public double LOWERIMP { get; set; }
[Key]
[Column(Order = 9)]
[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; }
public DateTime? Update_Time { get; set; }
}
}