旧版报表、仓库
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.6 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.lotbasis")]
public partial class lotbasi
{
[Key]
[StringLength(80)]
public string Module_ID { get; set; }
[Required]
[StringLength(40)]
public string WorkOrder_ID { get; set; }
[StringLength(45)]
public string ReWorkOrder { get; set; }
[StringLength(20)]
public string Status { get; set; }
[StringLength(20)]
public string Factory_ID { get; set; }
[StringLength(20)]
public string Workshop_ID { get; set; }
public sbyte current_flow_id { get; set; }
public sbyte next_flow_id { get; set; }
[StringLength(20)]
public string worksite { get; set; }
[StringLength(40)]
public string cell_batch_no { get; set; }
[StringLength(20)]
public string Appearance_grade { get; set; }
[StringLength(20)]
public string EL_Grade { get; set; }
[StringLength(20)]
public string final_grade { get; set; }
public DateTime Create_Date { get; set; }
[StringLength(20)]
public string OP_ID { get; set; }
[StringLength(40)]
public string sale_order { get; set; }
public int? IsInventory { get; set; }
[StringLength(45)]
public string ProduceNotice { get; set; }
}
}