Files
WarehouseMgmt/api_sqlsugar/VolPro.Core/Print/CustomField.cs
2025-10-09 13:58:21 +08:00

24 lines
601 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VolPro.Core.Print
{
/// <summary>
/// 自定义字段某些字段不在当前表可以预先自定义字段在PrintCustom类QueryResult字自定义返回这些字段的值
/// </summary>
public class CustomField
{
/// <summary>
/// 列显示名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 字段
/// </summary>
public string Field { get; set; }
}
}