using LJLib.DAL.SQL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JLHHJSvr.Com.Model
{
[PK(new[] { "deptid", "bednet_or_mattress", "bednettypeid_mattresstypeid" })]
public sealed class u_factory_profitrate
{
///
/// 部门ID
///
public int? deptid { get; set; }
///
/// 类型【床网.床垫】
///
public byte? bednet_or_mattress { get; set; }
///
/// 床垫.床网类别ID
///
public int? bednettypeid_mattresstypeid { get; set; }
///
/// 利润率
///
public decimal? profitrate { get; set; }
///
/// 建立时间
///
public DateTime? createtime { get; set; }
///
/// 建立人
///
public string createby { get; set; }
}
}