namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("lackOrder")]
|
public partial class lackOrder
|
{
|
[Key]
|
public int lackId { get; set; }
|
|
[StringLength(50)]
|
public string workCode { get; set; }
|
|
[StringLength(50)]
|
public string trackCode { get; set; }
|
|
public int? totalCount { get; set; }
|
|
public int? counting { get; set; }
|
|
public int? finishCount { get; set; }
|
}
|
}
|