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.

46 lines
1.1 KiB

1 year ago
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TS_ERP_STOCK
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public int UID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(50)]
public string ErpLocCode { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(50)]
public string ErpPartCode { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(50)]
public string Batch { get; set; }
[Column(TypeName = "money")]
public decimal Qty { get; set; }
public int State { get; set; }
[StringLength(200)]
public string Remark { get; set; }
[StringLength(50)]
public string RefCode { get; set; }
public DateTime? UpdateDate { get; set; }
public DateTime? UpdateTime { get; set; }
[StringLength(50)]
public string Unit { get; set; }
}
}