namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("StockClearLog")]
|
public partial class StockClearLog
|
{
|
[StringLength(36)]
|
public string ID { get; set; }
|
|
[Required]
|
[StringLength(128)]
|
public string positionName { get; set; }
|
|
[StringLength(100)]
|
public string serialNumber { get; set; }
|
|
[StringLength(100)]
|
public string materialCode { get; set; }
|
|
[StringLength(100)]
|
public string materialName { get; set; }
|
|
[StringLength(100)]
|
public string version { get; set; }
|
|
[StringLength(100)]
|
public string supplier { get; set; }
|
|
[StringLength(100)]
|
public string containerCode { get; set; }
|
|
public int? qty { get; set; }
|
|
[StringLength(128)]
|
public string Remark { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
[StringLength(128)]
|
public string LastModifier { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
}
|
}
|