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

65 lines
1.5 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_nameplate_data")]
public partial class df_nameplate_data
{
[Key]
[Column(Order = 0)]
[StringLength(20)]
public string Product_Type { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(20)]
public string NAMEPLATE_Type { get; set; }
[Required]
[StringLength(20)]
public string STANDARD_PWR { get; set; }
[Required]
[StringLength(20)]
public string PMAX { get; set; }
[Required]
[StringLength(20)]
public string VMP { get; set; }
[StringLength(20)]
public string IMP { get; set; }
[Required]
[StringLength(20)]
public string VOC { get; set; }
[Required]
[StringLength(20)]
public string ISC { get; set; }
[Required]
[StringLength(20)]
public string MAX_SYS_VOLTAGE { get; set; }
[StringLength(20)]
public string MAX_SERIES_FUSE { get; set; }
[StringLength(20)]
public string MIN_BYPASS_DIODE { get; set; }
[StringLength(20)]
public string MODULE_APP { get; set; }
[StringLength(20)]
public string FIRE_RATING { get; set; }
[StringLength(255)]
public string ParameterString { get; set; }
}
}