123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace FMSAdmin.Entities
- {
- public partial class FmsDailyStoredReleaseStatusView
- {
- public int SiteId { get; set; }
- public int BusinessFieldId { get; set; }
- public int MaterialId { get; set; }
- [Required]
- [StringLength(48)]
- public string MaterialCode { get; set; }
- [Required]
- [StringLength(48)]
- public string Name { get; set; }
- [StringLength(12)]
- public string Unit { get; set; }
- [Column(TypeName = "datetime")]
- public DateTime StoredDate { get; set; }
- public int MaterialStoredId { get; set; }
- public int? PurchaseOrderId { get; set; }
- public int UnitCost { get; set; }
- public int StockCount { get; set; }
- public int StoredCount { get; set; }
- public bool IsApproval { get; set; }
- public bool IsUse { get; set; }
- [Column(TypeName = "datetime")]
- public DateTime? ReleaseDate { get; set; }
- public short? ReleaseTypeId { get; set; }
- public int ReleaseCount { get; set; }
- public int ReleaseTotalCost { get; set; }
- public int? StockRemainCount { get; set; }
- public int? StockRemainAmount { get; set; }
- public int WarehouseId { get; set; }
- [Required]
- [StringLength(48)]
- public string WarehouseName { get; set; }
- [StringLength(100)]
- public string LocationInWarehouse { get; set; }
- public short? ReasonableStockCount { get; set; }
- public int? FirstClassId { get; set; }
- public int? SecondClassId { get; set; }
- public int? ThirdClassId { get; set; }
- }
- }
|