You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

40 lines
1.1 KiB

using System;
namespace Leit.Model
{
/// <summary>
/// 数据表实体类:Print_PrintSourceIndex
/// </summary>
[Serializable()]
public class Print_PrintSourceIndex :EntityBase<Print_PrintSourceIndex>
{
//当前代码为系统自动生成
/// <summary>
/// String:产品型号
/// </summary>
public String PieceType {get;set;}
/// <summary>
/// Int32:产品型号代码
/// </summary>
public Int32? PieceTypeCode {get;set;}
/// <summary>
/// String:产品标记
/// </summary>
public String PieceMark {get;set;}
/// <summary>
/// String:打印字符串
/// </summary>
public String PrintSourceCode {get;set;}
}
}