体检系统架构
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
1.4 KiB

#region CopyRight
/****************************************************************
* Project:健康体检信息管理系统(PEIS)
* Author:张剑峰
* CLR Version:4.0.30319.42000
* CreateTime:2023-05-01 14:41:54
* Version:v2.0
*
* Description:
*
* History:
*
*****************************************************************
* Copyright @ 云南新八达科技有限公司 2023 All rights reserved
*****************************************************************/
#endregion CopyRight
using System;
namespace PEIS.Utils
{
public abstract class ObjectData
{
/// <summary>
/// 数据表名
/// </summary>
public abstract string TableName
{
get;
}
}
public class KeyFlagAttribute : Attribute
{
private bool _bIsKey;
public bool IsKey { get { return _bIsKey; } }
public KeyFlagAttribute(bool bIsKey)
{
_bIsKey = bIsKey;
}
}
public class RefFlagAttribute : Attribute
{
private bool _bIsRef;
public bool IsRef { get { return _bIsRef; } }
public RefFlagAttribute(bool bIsRef)
{
_bIsRef = bIsRef;
}
}
public class FixFlagAttribute : Attribute
{
private bool _blsFix;
public bool IsFix { get { return _blsFix; } }
public FixFlagAttribute(bool blsFix)
{
_blsFix = blsFix;
}
}
}