mahao
1 year ago
6 changed files with 224 additions and 22 deletions
@ -0,0 +1,104 @@ |
|||
using System; |
|||
using System.ComponentModel; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ.Syncs; |
|||
|
|||
public class TM_BJBMPT_JIS_RECORD |
|||
{ |
|||
[Key] |
|||
[DatabaseGenerated(DatabaseGeneratedOption.Identity)] |
|||
public int UID { get; set; } |
|||
|
|||
[DisplayName("JIS单据编号")] |
|||
public string JISNum { get; set; } |
|||
|
|||
[DisplayName("发货时间")] |
|||
public DateTime? BillTime { get; set; } |
|||
|
|||
[DisplayName("发货人")] |
|||
public string Oper { get; set; } |
|||
|
|||
[DisplayName("JIS排序单号")] |
|||
public string OrderNum { get; set; } |
|||
|
|||
[DisplayName("订单序号")] |
|||
public string Seq { get; set; } |
|||
|
|||
[DisplayName("JIS实际生产码")] |
|||
public string RealCode { get; set; } |
|||
|
|||
[DisplayName("订单生产码")] |
|||
public string VinCode { get; set; } |
|||
|
|||
[DisplayName("JIS生产码类型")] |
|||
public string CodeType { get; set; } |
|||
|
|||
[DisplayName("订单零件号")] |
|||
public string PartCode { get; set; } |
|||
|
|||
[DisplayName("数量")] |
|||
public decimal? Qty { get; set; } |
|||
|
|||
[DisplayName("发货单号")] |
|||
public string BillNum { get; set; } |
|||
|
|||
public string MESConfigCode { get; set; } |
|||
|
|||
[DisplayName("来源库位")] |
|||
public string FromLoc { get; set; } |
|||
|
|||
[DisplayName("目标库位")] |
|||
public string ToLoc { get; set; } |
|||
|
|||
public string RealPartCode { get; set; } |
|||
|
|||
public string Batch { get; set; } |
|||
|
|||
[DisplayName("参照订单生产码")] |
|||
public string RefVinCode { get; set; } |
|||
|
|||
//[DisplayName("单据类型")]
|
|||
//public EnumBillType BillType { get; set; }
|
|||
|
|||
//[DisplayName("子单据类型")]
|
|||
//public EnumSubBillType SubBillType { get; set; }
|
|||
|
|||
[DisplayName("单据性质")] |
|||
public string BillCharacter { get; set; } |
|||
|
|||
public int? TransType { get; set; } |
|||
|
|||
public int? DeliverBillType { get; set; } |
|||
|
|||
public int? DeliverSubBillType { get; set; } |
|||
|
|||
[DisplayName("发货关联单号")] |
|||
public string RefBillNum { get; set; } |
|||
|
|||
[DisplayName("Erp目标库位")] |
|||
public string ErpToLoc { get; set; } |
|||
|
|||
[DisplayName("原生产码")] |
|||
public string OrigiCode { get; set; } |
|||
|
|||
[DisplayName("备注")] |
|||
public string Remark { get; set; } |
|||
|
|||
[DisplayName("塑件唯一码")] |
|||
public string UniqueCode { get; set; } |
|||
|
|||
[DisplayName("PJS顺序号")] |
|||
public string PjsNum { get; set; } |
|||
|
|||
[DisplayName("虚拟小总成")] |
|||
public string MatchNumber { get; set; } |
|||
|
|||
//[DisplayName("业务类型")]
|
|||
//public EnumProTpe ProType { get; set; }
|
|||
|
|||
public string DeliverCode { get; set; } |
|||
|
|||
public string Position { get; set; } |
|||
} |
Loading…
Reference in new issue