namespace iWareSql.MyDbContext
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class wms_stock_quan
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Id { get; set; }
|
|
public long ContainerId { get; set; }
|
|
[StringLength(50)]
|
public string ContainerCode { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string MaterialCode { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
[StringLength(50)]
|
public string SupplierBatch { get; set; }
|
|
[StringLength(255)]
|
public string Batch { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public DateTime? UpdateTime { get; set; }
|
|
public long? CreateUserId { get; set; }
|
|
[StringLength(64)]
|
public string CreateUserName { get; set; }
|
|
public long? UpdateUserId { get; set; }
|
|
[StringLength(64)]
|
public string UpdateUserName { get; set; }
|
|
public bool IsDelete { get; set; }
|
|
public DateTime? RecordInsertTime { get; set; }
|
|
[StringLength(50)]
|
public string SupplierCode { get; set; }
|
|
[StringLength(50)]
|
public string SupplierName { get; set; }
|
|
public long? AsnDetailsId { get; set; }
|
|
[StringLength(50)]
|
public string MaterialName { get; set; }
|
|
public int StockStatus { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string StockStatusName { get; set; }
|
|
[StringLength(255)]
|
public string SN_1d { get; set; }
|
|
[StringLength(255)]
|
public string SN_2d { get; set; }
|
|
[Required]
|
[StringLength(255)]
|
public string SNCode { get; set; }
|
|
[StringLength(50)]
|
public string ErpOrderNo { get; set; }
|
|
[StringLength(50)]
|
public string ErpCode { get; set; }
|
|
public int? QCStatus { get; set; }
|
|
[StringLength(50)]
|
public string QCStatusName { get; set; }
|
|
[StringLength(255)]
|
public string ErpVoucher { get; set; }
|
|
[StringLength(255)]
|
public string ActionRemark { get; set; }
|
|
public DateTime? ActionTime { get; set; }
|
|
[StringLength(50)]
|
public string RealContainerCode { get; set; }
|
|
public DateTime? OnShelvesTime { get; set; }
|
|
public DateTime? OffShelvesTime { get; set; }
|
|
[StringLength(255)]
|
public string Remarks { get; set; }
|
|
[StringLength(50)]
|
public string RelationNo { get; set; }
|
|
[StringLength(255)]
|
public string SourceSNCode { get; set; }
|
|
public int? MaxIndex { get; set; }
|
|
public int? OldStockStatus { get; set; }
|
|
[StringLength(50)]
|
public string OldStockStatusName { get; set; }
|
|
[StringLength(50)]
|
public string MaterialUnit { get; set; }
|
|
public int LockStatus { get; set; }
|
|
[StringLength(255)]
|
public string OperReason { get; set; }
|
|
[StringLength(50)]
|
public string OperUser { get; set; }
|
|
public DateTime? OperTime { get; set; }
|
|
[StringLength(500)]
|
public string LockReason { get; set; }
|
|
[StringLength(500)]
|
public string LockUser { get; set; }
|
|
public DateTime? LockTime { get; set; }
|
}
|
}
|