using LJLib.DAL.SQL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JLHHJSvr.Com.Model
{
[PK(new[] { "workmanshipid" })]
public sealed class u_workmanship_add
{
///
/// 加点id
///
public int? workmanshipid { get; set; }
///
/// 部门id
///
public int? deptid { get; set; }
///
/// 床垫类型
///
public int? mattresstypeid { get; set; }
///
/// 特殊工艺名称
///
public string workmanshipname { get; set; }
///
/// 生效条件
///
public string formula { get; set; }
///
/// 工艺利润率
///
public decimal? rate { get; set; }
///
/// 禁用
///
public byte? inuse { get; set; }
}
}