NewGood.cs 441 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. class NewGood
  7. {
  8. public int ID { get; set; }
  9. public string GoodsName { get; set; }
  10. public string GoodsSpec { get; set; }
  11. public string Manufacturer { get; set; }
  12. public string ApprovalNo { get; set; }
  13. public int? Cnum { get; set; }
  14. public decimal? Price { get; set; }
  15. }
  16. }