旧版报表、仓库
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.5 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_material_lot_info")]
public partial class rt_material_lot_info
{
[Key]
[StringLength(100)]
public string MaterialBarcode { get; set; }
[StringLength(100)]
public string FromMaterialBarcode { get; set; }
[StringLength(45)]
public string WorkOrder { get; set; }
[StringLength(45)]
public string ProduceNotice { get; set; }
[StringLength(45)]
public string BOMID { get; set; }
[StringLength(45)]
public string MaterialID { get; set; }
[StringLength(45)]
public string MaterialName { get; set; }
[StringLength(145)]
public string SupplierDesc { get; set; }
[StringLength(45)]
public string Description { get; set; }
public decimal? Qty { get; set; }
public decimal? PieceQty { get; set; }
public decimal? Ullage { get; set; }
public decimal? RemainderQty { get; set; }
[StringLength(45)]
public string Unit { get; set; }
[StringLength(45)]
public string Station { get; set; }
[StringLength(45)]
public string MaterialType { get; set; }
public DateTime? CreateTime { get; set; }
}
}