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

58 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.df_wo_bom_issue_detail")]
public partial class df_wo_bom_issue_detail
{
[Key]
[Column(Order = 0)]
[StringLength(45)]
public string ID { get; set; }
[Key]
[Column(Order = 1)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int RowNo { get; set; }
[StringLength(45)]
public string MaterialID { get; set; }
[StringLength(45)]
public string MaterialName { get; set; }
[StringLength(45)]
public string Supplier { get; set; }
[StringLength(345)]
public string SupplierDesc { get; set; }
[StringLength(145)]
public string Description { get; set; }
[StringLength(45)]
public string Unit { get; set; }
public decimal? PieceQty { get; set; }
public decimal? RequiredQty { get; set; }
public decimal? Ullage { get; set; }
public decimal? UsingQty { get; set; }
public decimal? RemainderQty { get; set; }
[StringLength(45)]
public string MaterialBarcode { get; set; }
public DateTime? CreateTime { get; set; }
[StringLength(45)]
public string df_wo_bom_issue_detailcol { get; set; }
}
}