Zxd.Core/code/DG.Tool/Attributes/NotExportColumnAttribute.cs

17 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DG.Tool
{
/// <summary>
/// 不需要导出的列
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class NotExportColumnAttribute : Attribute
{
}
}