|
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
|
|
{
|
|
}
|
|
}
|