u_bednetmx_mtrl.cs 932 B

1234567891011121314151617181920212223242526272829
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. [PK(new[] { "bednetid", "bednetmxid" })]
  9. public sealed class u_bednetmx_mtrl
  10. {
  11. public int? bednetmtrlid { get; set; }
  12. public int? bednetid { get; set; }
  13. public int? formulakind { get; set; }
  14. public string formula { get; set; }
  15. public int? if_success { get; set; }
  16. public string replace_formula { get; set; }
  17. public string priceunit { get; set; }
  18. public decimal? shrinkage { get; set; }
  19. public int? mtrlid { get; set; }
  20. public decimal? price { get; set; }
  21. public decimal? gram_weight { get; set; }
  22. public decimal? cloth_width { get; set; }
  23. public int? if_inputqty { get; set; }
  24. public decimal? qty { get; set; }
  25. public decimal? costamt { get; set; }
  26. }
  27. }