using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.EntityStock { [Table("stockpooldata_flash")] public class StockPoolDataFlash { [Key] public int Id { get; set; } public int Formula_Id { get; set; } public int Period_Type { get; set; } public string GpMarket { get; set; } public string GpCode { get; set; } public int YMD { get; set; } public decimal? F1 { get; set; } public decimal? F2 { get; set; } public decimal? F3 { get; set; } public decimal? F4 { get; set; } } }