using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; namespace MediII.Adapter.ReceiveToKCModel { [Serializable] public partial class item_his_original : BaseEntity { public Int64 No { get; set;} public string item_code { get; set;} public string yn_code { get; set;} public string item_name { get; set;} public string fee_code { get; set;} public string fee_name { get; set;} public string spell_code { get; set;} public Decimal price { get; set;} public string status { get; set;} public DateTime status_date { get; set;} } }