u_mattress_interface_qd.cs 498 B

123456789101112131415161718
  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[] { "mattressid,printid" })]
  9. public sealed class u_mattress_interface_qd : BaseInterfaceQd
  10. {
  11. public int? mattressid { get; set; }
  12. public decimal? qd_pfgroupqty { get; set; }
  13. public decimal? ss_rate { get; set; }
  14. public decimal? ls_rate { get; set; }
  15. public decimal? sh_rate { get; set; }
  16. }
  17. }