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.
38 lines
960 B
38 lines
960 B
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.df_bom_basic")]
|
|
public partial class df_bom_basic
|
|
{
|
|
[Key]
|
|
[StringLength(45)]
|
|
public string BOMID { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ProductType { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ModulePower { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ModuleModel { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string QulitlyGrade { get; set; }
|
|
|
|
public int? CellQty { get; set; }
|
|
|
|
[StringLength(145)]
|
|
public string Description { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string Enabled { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
}
|
|
}
|
|
|