mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 02:29:24 +08:00
#I7A7YE 建议加入打印功能
This commit is contained in:
75
OpenAuth.Repository/Domain/SysPrinterPlan.cs
Normal file
75
OpenAuth.Repository/Domain/SysPrinterPlan.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// This code was generated by a CodeSmith Template.
|
||||
//
|
||||
// DO NOT MODIFY contents of this file. Changes to this
|
||||
// file will be lost if the code is regenerated.
|
||||
// Author:Yubao Li
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using OpenAuth.Repository.Core;
|
||||
|
||||
namespace OpenAuth.Repository.Domain
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Table("SysPrinterPlan")]
|
||||
public class SysPrinterPlan : StringEntity
|
||||
{
|
||||
public SysPrinterPlan()
|
||||
{
|
||||
this.Name = "";
|
||||
this.CreateUser = "";
|
||||
this.SourceSql = "";
|
||||
this.CloumnView = "";
|
||||
this.PlanContent = "";
|
||||
this.CreateTime = DateTime.Now;
|
||||
this.Disable = false;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///方案名称
|
||||
/// </summary>
|
||||
[Description("方案名称")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///创建人
|
||||
/// </summary>
|
||||
[Description("创建人")]
|
||||
public string CreateUser { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///数据源;打印方案对应的数据来源SQL
|
||||
/// </summary>
|
||||
[Description("数据源;打印方案对应的数据来源SQL")]
|
||||
public string SourceSql { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///中文视图名;设计打印方案时,提供中文快捷按钮的视图来源
|
||||
/// </summary>
|
||||
[Description("中文视图名;设计打印方案时,提供中文快捷按钮的视图来源")]
|
||||
public string CloumnView { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///打印方案内容;打印方案JSON对象
|
||||
/// </summary>
|
||||
[Description("打印方案内容;打印方案JSON对象")]
|
||||
public string PlanContent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///创建日期
|
||||
/// </summary>
|
||||
[Description("创建日期")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///是否可用
|
||||
/// </summary>
|
||||
[Description("是否可用")]
|
||||
public bool Disable { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user