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

53 lines
1.3 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.if_e2m_material_issue_info")]
public partial class if_e2m_material_issue_info
{
public long ID { get; set; }
[StringLength(45)]
public string MaterialType { get; set; }
[StringLength(45)]
public string MaterialID { get; set; }
[StringLength(55)]
public string ERPLot { get; set; }
[StringLength(45)]
public string Vendor { get; set; }
[StringLength(245)]
public string Description { get; set; }
public decimal? Qty { get; set; }
[StringLength(45)]
public string Unit { get; set; }
[StringLength(45)]
public string WorkOrder { get; set; }
[StringLength(45)]
public string BOMID { get; set; }
public DateTime? InventoryTime { get; set; }
[StringLength(45)]
public string UserID { get; set; }
public DateTime? CreateTime { get; set; }
public decimal? RemainQty { get; set; }
[StringLength(5)]
public string Enable { get; set; }
}
}