添加项目文件。

This commit is contained in:
dell
2023-03-03 16:07:50 +08:00
parent 2c462551b6
commit 011039960e
585 changed files with 362460 additions and 0 deletions

View File

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HT.Cloud.Code.Model
{
public class PrintEntity
{
public string cmd { get; set; } = "print";
public string requestId { get; set; }
public PrintDetail data { get; set; }
}
public class PrintDetail
{
public PrintInitInfo printIniInfo { get; set; }
public object data { get; set; }
}
public class PrintInitInfo
{
public string filePath { get; set; }
public string realName { get; set; }
public int? printType { get; set; } = 1;
public string printName { get; set; } = "";
public bool landscape { get; set; } = true;
public string paperSize { get; set; }
public string duplex { get; set; }
public bool? isBatch { get; set; } = false;
}
}