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.5 KiB
64 lines
1.5 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VB_STOCK_MOVE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string BarCode { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string FromBatch { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string FromLocCode { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string ToLocCode { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string ToBatch { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 4, TypeName = "money")]
|
|
public decimal Qty { get; set; }
|
|
|
|
public DateTime BillTime { get; set; }
|
|
|
|
public string BillNum { get; set; }
|
|
|
|
public string VendId { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string ErpPartCode { get; set; }
|
|
|
|
public string PartDesc1 { get; set; }
|
|
|
|
public string PartDesc2 { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string ProjectId { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Unit { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartGroup { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartType { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PartKind { get; set; }
|
|
|
|
}
|
|
}
|
|
|