namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("OutInStockTask")]
|
public partial class OutInStockTask
|
{
|
public int id { get; set; }
|
|
[StringLength(50)]
|
public string taskName { get; set; }
|
|
/// <summary>
|
/// À´Ô´µ¥ºÅ£¨Èç¹ûÊÇÈë¿â£¬¾ÍÊDzɹºµ¥ºÅ£¬Èç¹ûÊdzö¿â£¬¾ÍÊdzö¿âµ¥ºÅ£©
|
/// </summary>
|
[StringLength(50)]
|
public string orderCode { get; set; }
|
|
[StringLength(50)]
|
public string trackNumber { get; set; }
|
|
[StringLength(50)]
|
public string materialNumber { get; set; }
|
|
[StringLength(50)]
|
public string materialName { get; set; }
|
|
[StringLength(50)]
|
public string unit { get; set; }
|
|
public decimal? quantity { get; set; }
|
|
public DateTime? creatDate { get; set; }
|
|
/// <summary>
|
/// ÍÐÅ̺Å
|
/// </summary>
|
[StringLength(50)]
|
public string ext1 { get; set; }
|
|
[StringLength(50)]
|
public string ext2 { get; set; }
|
|
[StringLength(50)]
|
public string ext3 { get; set; }
|
|
[StringLength(100)]
|
public string PositionName { get; set; }
|
|
public decimal? CGHW_ProductStorage { get; set; }
|
|
public decimal? ZCG_ProductStorage { get; set; }
|
|
[StringLength(500)]
|
public string Remark { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
}
|
}
|