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 v_wms_stock_dispense
|
{
|
[StringLength(50)]
|
public string MovementNo { get; set; }
|
|
[StringLength(50)]
|
public string MovementLineNumber { get; set; }
|
|
[Key]
|
public decimal DispenseQty { get; set; }
|
}
|
}
|