item_his_original.cs 622 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Text;
  6. namespace MediII.Adapter.ReceiveToKCModel
  7. {
  8. [Serializable]
  9. public partial class item_his_original : BaseEntity
  10. {
  11. public Int64 No { get; set;}
  12. public string item_code { get; set;}
  13. public string yn_code { get; set;}
  14. public string item_name { get; set;}
  15. public string fee_code { get; set;}
  16. public string fee_name { get; set;}
  17. public string spell_code { get; set;}
  18. public Decimal price { get; set;}
  19. public string status { get; set;}
  20. public DateTime status_date { get; set;}
  21. }
  22. }