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.
94 lines
2.2 KiB
94 lines
2.2 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.rt_pallet_info_his")]
|
||
|
public partial class rt_pallet_info_his
|
||
|
{
|
||
|
public long ID { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(45)]
|
||
|
public string pallet_no { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(20)]
|
||
|
public string state { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(20)]
|
||
|
public string final_grade { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string ProductType { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(20)]
|
||
|
public string power_grade { get; set; }
|
||
|
|
||
|
public double? avg_power { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(20)]
|
||
|
public string imp_grade { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string Color { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(45)]
|
||
|
public string cell_type { get; set; }
|
||
|
|
||
|
public sbyte cell_qty { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(45)]
|
||
|
public string jbox_spec { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(45)]
|
||
|
public string frame_spec { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(20)]
|
||
|
public string bus_bar_type { get; set; }
|
||
|
|
||
|
public DateTime? unpack_date { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string unpack_op { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string product_no1 { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string product_no2 { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string packState { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string lowPower { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string upPower { get; set; }
|
||
|
|
||
|
public DateTime? finished_time { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string workshop { get; set; }
|
||
|
|
||
|
public sbyte? pack_count { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string power_grade_type { get; set; }
|
||
|
|
||
|
[StringLength(545)]
|
||
|
public string PackPatten { get; set; }
|
||
|
}
|
||
|
}
|