namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Base_PositionPrint
|
{
|
[Key]
|
public int Position_Id { get; set; }
|
|
[StringLength(50)]
|
public string PoCode { get; set; }
|
|
public DateTime InStorageDate { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[Required]
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(50)]
|
public string SaleCode { get; set; }
|
|
public decimal? ProductStorage { get; set; }
|
|
[StringLength(50)]
|
public string ProviderShortName { get; set; }
|
|
[StringLength(300)]
|
public string ExtendField04 { get; set; }
|
|
[StringLength(300)]
|
public string ExtendField07 { get; set; }
|
|
[StringLength(50)]
|
public string ItemNumber { get; set; }
|
|
public DateTime? LimitDate { get; set; }
|
|
public int? PlatUser_Id { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public string Remark { get; set; }
|
|
public decimal? TotalWeight { get; set; }
|
|
public decimal? Quantity { get; set; }
|
|
/// <summary>
|
/// ±êÇ©ÌõÂë
|
/// </summary>
|
[StringLength(300)]
|
public string ExtendField06 { get; set; }
|
|
public int? ProductPosition_Id { get; set; }
|
|
public int? PrintCount { get; set; }
|
|
[StringLength(300)]
|
public string ExtendField08 { get; set; }
|
|
[StringLength(50)]
|
public string SmallUnit { get; set; }
|
|
public int? isNeedPrint { get; set; }
|
|
public int? printDevice { get; set; }
|
}
|
}
|