InventoryAlert.cs 858 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 库存预警表
	/// </summary>
    [Table("inventory_Alert")]
    public partial class InventoryAlert : SysEntity
    {
        public InventoryAlert()
        {
        }

        /// <summary>
	    /// 物料编码
	    /// </summary>
        [Column("materialCode")]
        public string MaterialCode { get; set; }
        /// <summary>
	    /// 物料类别
	    /// </summary>
        [Column("shipmentCode")]
        public string ShipmentCode { get; set; }
        /// <summary>
	    /// 库存数量
	    /// </summary>
        [Column("Qty")]
        public decimal? Qty { get; set; }
        /// <summary>
	    /// 预警数量
	    /// </summary>
        [Column("hadQty")]
        public decimal? HadQty { get; set; }
    }
}