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_WmsStockWarning
|
{
|
[Key]
|
[Column(Order = 0)]
|
public decimal RealAvailableQty { get; set; }
|
|
public decimal? SafeImumqty { get; set; }
|
|
public decimal? MinImumqty { get; set; }
|
|
public decimal? MaxImumqty { get; set; }
|
|
[Key]
|
[Column(Order = 1)]
|
[StringLength(50)]
|
public string MaterialCode { get; set; }
|
|
[StringLength(50)]
|
public string MaterialName { get; set; }
|
|
[StringLength(50)]
|
public string MaterialUnit { get; set; }
|
|
[StringLength(50)]
|
public string materialTypeName { get; set; }
|
}
|
}
|