首次提交:本地项目同步到Gitea

This commit is contained in:
zhusenlin
2026-01-24 08:45:54 +08:00
commit 4a6b23db69
256 changed files with 25311 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/**
* 外部往里边传入这个变量,
* 内部把这个拆分成一张纸比如一张纸上有10个模板那么就10个变量集合不用打印数量,打印机了。
*
* */
namespace Io.Github.Kerwinxu.LibShapes.Core.Print
{
/// <summary>
/// 打印项目
/// </summary>
public class PrintItem
{
/// <summary>
/// 打印机名称
/// </summary>
public string PrinterName { get; set; }
/// <summary>
/// 图形
/// </summary>
public Shapes Shapes { get; set; }
/// <summary>
/// 变量的集合
/// </summary>
public List<Dictionary<string, string>> Valss { get; set; }
/// <summary>
/// 打印数量
/// </summary>
public List<int> PrintCounts { get; set; }
/// <summary>
/// 是否充满打印,
/// </summary>
public bool isFullPrint { get; set; }
/// <summary>
/// 构造函数
/// </summary>
public PrintItem()
{
// 初始化变量
Valss = new List<Dictionary<string, string>>();
PrintCounts = new List<int>();
}
}
}