91 lines
2.7 KiB
C#
91 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
/// <summary>
|
|
/// Style 的摘要描述
|
|
/// </summary>
|
|
public class TabletStyle
|
|
{
|
|
public TabletStyle()
|
|
{
|
|
//
|
|
// TODO: 在這裡新增建構函式邏輯
|
|
//
|
|
}
|
|
|
|
public string StyleID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Descr { get; set; }
|
|
public string PaperSize { get; set; }
|
|
public string BackendImg { get; set; }
|
|
public string PrintSize { get; set; }
|
|
public string PrintMode { get; set; }
|
|
public string Orientation { get; set; }
|
|
public string PrintPageCount { get; set; }
|
|
public string CUser { get; set; }
|
|
public string CDate { get; set; }
|
|
public string CTime { get; set; }
|
|
public string UUser { get; set; }
|
|
public string UDate { get; set; }
|
|
public string UTime { get; set; }
|
|
}
|
|
|
|
public class TabletStyleDetail
|
|
{
|
|
public TabletStyleDetail() { }
|
|
public string StyleID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Descr { get; set; }
|
|
public string ElementID { get; set; }
|
|
public string StartX { get; set; }
|
|
public string StartY { get; set; }
|
|
public string FontSize { get; set; }
|
|
public string FontFamily { get; set; }
|
|
public string TwoOffset { get; set; }
|
|
public string ThreeOffset { get; set; }
|
|
public string FourOffset { get; set; }
|
|
public string IsActive { get; set; }
|
|
public string Width { get; set; }
|
|
public string Height { get; set; }
|
|
public string TextWidth { get; set; }
|
|
public string TextHeight { get; set; }
|
|
public string BreakLen { get; set; }
|
|
public string CUser { get; set; }
|
|
public string CDate { get; set; }
|
|
public string CTime { get; set; }
|
|
public string UUser { get; set; }
|
|
public string UDate { get; set; }
|
|
public string UTime { get; set; }
|
|
}
|
|
|
|
public class TabletElement
|
|
{
|
|
public TabletElement() { }
|
|
public string ElementID { get; set; }
|
|
public string Name { get; set; }
|
|
public string ElementType { get; set; }
|
|
public string SampleContent { get; set; }
|
|
public string CUser { get; set; }
|
|
public string CDate { get; set; }
|
|
public string CTime { get; set; }
|
|
public string UUser { get; set; }
|
|
public string UDate { get; set; }
|
|
public string UTime { get; set; }
|
|
}
|
|
|
|
public class TabletPaperSize
|
|
{
|
|
public TabletPaperSize() { }
|
|
public string PaperID { get; set; }
|
|
public string PaperName { get; set; }
|
|
public string Width { get; set; }
|
|
public string Height { get; set; }
|
|
public string CUser { get; set; }
|
|
public string CDate { get; set; }
|
|
public string CTime { get; set; }
|
|
public string UUser { get; set; }
|
|
public string UDate { get; set; }
|
|
public string UTime { get; set; }
|
|
} |