123456789101112131415161718 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "mattressid,printid" })]
- public sealed class u_mattress_interface_qd : BaseInterfaceQd
- {
- public int? mattressid { get; set; }
- public decimal? qd_pfgroupqty { get; set; }
- public decimal? ss_rate { get; set; }
- public decimal? ls_rate { get; set; }
- public decimal? sh_rate { get; set; }
- }
- }
|