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.
89 lines
2.0 KiB
89 lines
2.0 KiB
namespace Warehouse.Models.mesModel
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class oem_assemblies
|
|
{
|
|
[Key]
|
|
[StringLength(30)]
|
|
public string serial_nbr { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(30)]
|
|
public string pallet_nbr { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string plant_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string machine_name { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(30)]
|
|
public string create_user { get; set; }
|
|
|
|
public DateTime create_date { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(30)]
|
|
public string workorder { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string product_code { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string schedule_nbr { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(5)]
|
|
public string serial_status { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string exterior_grade { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string el_grade { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string final_grade { get; set; }
|
|
|
|
public short power_grade { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string current_grade { get; set; }
|
|
|
|
public decimal pmax { get; set; }
|
|
|
|
public decimal voc { get; set; }
|
|
|
|
public decimal isc { get; set; }
|
|
|
|
public decimal ff { get; set; }
|
|
|
|
public decimal vpm { get; set; }
|
|
|
|
public decimal ipm { get; set; }
|
|
|
|
public decimal? env_temp { get; set; }
|
|
|
|
public decimal? surf_temp { get; set; }
|
|
|
|
public float? rs { get; set; }
|
|
|
|
public float? rsh { get; set; }
|
|
|
|
public float? eff { get; set; }
|
|
}
|
|
}
|
|
|