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

108 lines
2.8 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 assembly_basis
{
[Key]
[StringLength(30)]
public string serial_nbr { get; set; }
[Required]
[StringLength(30)]
public string workorder { get; set; }
[Required]
[StringLength(20)]
public string product_code { get; set; }
[Required]
[StringLength(20)]
public string schedule_nbr { get; set; }
[StringLength(20)]
public string cell_part_nbr { get; set; }
[StringLength(20)]
public string cell_lot_nbr { get; set; }
[StringLength(20)]
public string cell_supplier_code { get; set; }
[StringLength(20)]
public string glass_part_nbr { get; set; }
[StringLength(20)]
public string glass_supplier_code { get; set; }
[StringLength(20)]
public string glass_lot_nbr { get; set; }
[StringLength(20)]
public string eva_part_nbr { get; set; }
[StringLength(20)]
public string eva_supplier_code { get; set; }
[StringLength(20)]
public string eva_lot_nbr { get; set; }
[StringLength(20)]
public string bks_part_nbr { get; set; }
[StringLength(20)]
public string bks_supplier_code { get; set; }
[StringLength(20)]
public string bks_lot_nbr { get; set; }
[StringLength(20)]
public string frame_part_nbr { get; set; }
[StringLength(20)]
public string frame_supplier_code { get; set; }
[StringLength(20)]
public string frame_lot_nbr { get; set; }
[StringLength(20)]
public string jbox_part_nbr { get; set; }
[StringLength(20)]
public string jbox_supplier_code { get; set; }
[StringLength(20)]
public string jbox_lot_nbr { get; set; }
[StringLength(20)]
public string huiliu_part_nbr { get; set; }
[StringLength(20)]
public string huiliu_supplier_code { get; set; }
[StringLength(20)]
public string huiliu_lot_nbr { get; set; }
[StringLength(20)]
public string hulian_part_nbr { get; set; }
[StringLength(20)]
public string hulian_supplier_code { get; set; }
[StringLength(20)]
public string hulian_lot_nbr { get; set; }
[StringLength(20)]
public string glue_part_nbr { get; set; }
[StringLength(20)]
public string glue_supplier_code { get; set; }
[StringLength(20)]
public string glue_lot_nbr { get; set; }
}
}