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_order_sort_trans
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string MaterialCode { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string MaterialName { get; set; }
|
|
[Required]
|
[StringLength(255)]
|
public string SNCode { get; set; }
|
|
public decimal Quantity { get; set; }
|
|
public decimal? OccQuantity { get; set; }
|
|
[StringLength(255)]
|
public string Batch { get; set; }
|
|
[StringLength(50)]
|
public string ErpCode { get; set; }
|
|
[StringLength(50)]
|
public string SortNo { get; set; }
|
|
[StringLength(50)]
|
public string RelationNo { get; set; }
|
|
public long? RelationDetailsId { get; set; }
|
|
public long? SortDetailsId { 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; }
|
}
|
}
|