using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Sugar.Enties
{
///
///
///
[SugarTable("printfile")]
public partial class printfile
{
public printfile(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string printid {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string printmodultype {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string printname {get;set;}
///
/// Desc:打印文档名称
/// Default:
/// Nullable:True
///
public string printfilename {get;set;}
}
}