qianhao.xu 6296fb8fab init
2024-12-04 13:56:23 +08:00

28 lines
549 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace printsoftware.infrastructure.DAON_Attribute
{
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
public class DOAN_Column : Attribute
{
private string _ColumnName;
public string ColumnName
{
get
{
return _ColumnName;
}
set
{
_ColumnName = value;
}
}
}
}