using System;
|
|
namespace Leit.Model
|
|
{
|
|
/// <summary>
|
|
/// 数据表实体类:SerialPrintColumnParameters
|
|
/// </summary>
|
|
[Serializable()]
|
|
public class SerialPrintColumnParameters :EntityBase<SerialPrintColumnParameters>
|
|
{
|
|
//当前代码为系统自动生成
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Int32:
|
|
/// </summary>
|
|
|
|
public Int32 ProductTypeCode {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String SourceColValue {get;set;}
|
|
|
|
/// <summary>
|
|
/// String:
|
|
/// </summary>
|
|
|
|
public String ReplaceColValue {get;set;}
|
|
|
|
}
|
|
}
|
|
|