| 1234567891011121314151617181920212223 | using LJLib.DAL.SQL;using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace JLHHJSvr.Com.Model{    public sealed class u_his_price    {        public int? bednetid_mattressid { get; set; }        /// <summary>        /// 1: 床垫报价,0:床网报价        /// </summary>        public int? typeid { get; set; }        public DateTime? cmpdate { get; set; }        public string cmpemp { get; set; }        public decimal? nottax_dept_cost { get; set; }        public decimal? dept_cost { get; set; }        public decimal? foreign_cost { get; set; }    }}
 |