using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///需求业务印刷参数
///
[SugarTable("EC_DemandPrintParameter")]
public partial class EC_DemandPrintParameter
{
public EC_DemandPrintParameter(){
}
///
/// Desc:需求唯一编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public int TargetId {get;set;}
///
/// Desc:印刷参数
/// Default:
/// Nullable:False
///
public string PrintParameter {get;set;}
}
}