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.
59 lines
1.4 KiB
59 lines
1.4 KiB
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_cell_distribute")]
|
|
public partial class rt_cell_distribute
|
|
{
|
|
[Key]
|
|
[StringLength(45)]
|
|
public string cell_batch_no { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string cell_erp_lot { get; set; }
|
|
|
|
public int batch_count { get; set; }
|
|
|
|
public int cell_count_remain { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string workshop_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string cell_color { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string cell_eff_low { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string cell_eff_up { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string cell_eff { get; set; }
|
|
|
|
public float cell_power { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(20)]
|
|
public string cell_grade { get; set; }
|
|
|
|
public DateTime create_date { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string op { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string cell_comp { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string cell_TypeDesc { get; set; }
|
|
}
|
|
}
|
|
|