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

64 lines
1.6 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.df_wo_bom_issue_basic")]
public partial class df_wo_bom_issue_basic
{
[StringLength(45)]
public string ID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(45)]
public string WorkOrder { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(45)]
public string BOMID { get; set; }
[Key]
[Column(Order = 2)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int ProduceNotice { get; set; }
public int? Qty { get; set; }
[StringLength(45)]
public string PreFix { get; set; }
[StringLength(5)]
public string Postfix { get; set; }
[StringLength(4)]
public string StartCode { get; set; }
[StringLength(4)]
public string EndCode { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
[StringLength(45)]
public string ProduceTask { get; set; }
[StringLength(45)]
public string Custom { get; set; }
public DateTime? CreateTime { get; set; }
[Column(TypeName = "text")]
[StringLength(65535)]
public string Remark { get; set; }
[StringLength(45)]
public string PlanWorkShop { get; set; }
}
}