2025-03-28 09:49:56 +08:00

340 lines
12 KiB
C#

using System.Runtime.Serialization;
namespace SuperMap.RealEstate.Coop.Merchant.Interface
{
#region T_OWNERUNITDETAIL IOWNERUNITDETAIL
/// <summary>
/// T_OWNERUNITDETAIL 接口
/// </summary>
public interface IOWNERUNITDETAIL
{
/// <summary>
/// 法人身份证
/// </summary>
System.String OWNERUNIT_LINKMANIDCARD { get; set; }
/// <summary>
/// 内码
/// </summary>
System.Int32? OWNERUNITDETAIL_ID { get; set; }
/// <summary>
/// 内码 的加密字符串
/// </summary>
string OWNERUNITDETAIL_ID_Encrypt { get; set; }
/// <summary>
/// 业主单位内码
/// </summary>
System.Int32? OWNERUNIT_ID { get; set; }
/// <summary>
/// 单位类型
/// </summary>
System.Int32? OWNERUNIT_TYPE { get; set; }
/// <summary>
/// 业主单位性质
/// </summary>
System.Int32? OWNERUNIT_NATURE { get; set; }
/// <summary>
/// 业主单位名称
/// </summary>
System.String OWNERUNIT_NAME { get; set; }
/// <summary>
/// 统一信用代码
/// </summary>
System.String TAXPAYER_IDENTIFYCODE { get; set; }
/// <summary>
/// 开票人
/// </summary>
System.String OWNERUNIT_DRAWER { get; set; }
/// <summary>
/// 开户银行
/// </summary>
System.String BANK_NAME { get; set; }
/// <summary>
/// 银行账号
/// </summary>
System.String BANK_ACCOUNT { get; set; }
/// <summary>
/// 联系人员
/// </summary>
System.String OWNERUNIT_LINKMAN { get; set; }
/// <summary>
/// 电话号码
/// </summary>
System.String OWNERUNIT_TELEPHONE { get; set; }
/// <summary>
/// 手机号码
/// </summary>
System.String OWNERUNIT_MOBILEPHONE { get; set; }
/// <summary>
/// 联系地址
/// </summary>
System.String OWNERUNIT_ADDRESS { get; set; }
/// <summary>
/// 操作人内码
/// </summary>
System.Int32? STAFF_ID { get; set; }
/// <summary>
/// 操作人员
/// </summary>
System.String STAFF_NAME { get; set; }
/// <summary>
/// 操作时间
/// </summary>
System.DateTime? OPERATE_DATE { get; set; }
/// <summary>
/// 备注
/// </summary>
System.String OWNERUNITDETAIL_DESC { get; set; }
}
#endregion
#region T_OWNERUNITDETAIL IModifyOWNERUNITDETAIL
/// <summary>
/// T_OWNERUNITDETAIL 接口
/// </summary>
public interface IModifyOWNERUNITDETAIL
{
/// <summary>
/// 法人身份证 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_LINKMANIDCARD { get; set; }
/// <summary>
/// 内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNITDETAIL_ID { get; set; }
/// <summary>
/// 业主单位内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_ID { get; set; }
/// <summary>
/// 单位类型 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_TYPE { get; set; }
/// <summary>
/// 业主单位性质 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_NATURE { get; set; }
/// <summary>
/// 业主单位名称 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_NAME { get; set; }
/// <summary>
/// 统一信用代码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_TAXPAYER_IDENTIFYCODE { get; set; }
/// <summary>
/// 开票人 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_DRAWER { get; set; }
/// <summary>
/// 开户银行 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BANK_NAME { get; set; }
/// <summary>
/// 银行账号 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_BANK_ACCOUNT { get; set; }
/// <summary>
/// 联系人员 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_LINKMAN { get; set; }
/// <summary>
/// 电话号码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_TELEPHONE { get; set; }
/// <summary>
/// 手机号码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_MOBILEPHONE { get; set; }
/// <summary>
/// 联系地址 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNIT_ADDRESS { get; set; }
/// <summary>
/// 操作人内码 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STAFF_ID { get; set; }
/// <summary>
/// 操作人员 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_STAFF_NAME { get; set; }
/// <summary>
/// 操作时间 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OPERATE_DATE { get; set; }
/// <summary>
/// 备注 是否被修改,不建议直接对其赋值操作
/// </summary>
bool Modify_OWNERUNITDETAIL_DESC { get; set; }
}
#endregion
#region T_OWNERUNITDETAIL
/// <summary>
/// T_OWNERUNITDETAIL_业主单位授权表 的字段类
/// </summary>
public class TableSchema_OWNERUNITDETAIL
{
/// <summary>
/// 序列名 (用于Oracle主键)
/// </summary>
public const string SequenceName = "seq_ownerunitdetail";
/// <summary>
/// 表名
/// </summary>
public const string TableName = "T_OWNERUNITDETAIL";
/// <summary>
/// 表注释
/// </summary>
public const string Comment_TableName = "业主单位授权表";
/// <summary>
/// 主键
/// </summary>
public const string KeyFieldName = "OWNERUNITDETAIL_ID";
/// <summary>
/// 法人身份证
/// </summary>
public const string OWNERUNIT_LINKMANIDCARD = "OWNERUNIT_LINKMANIDCARD";
/// <summary>
/// 内码
/// </summary>
public const string OWNERUNITDETAIL_ID = "OWNERUNITDETAIL_ID";
/// <summary>
/// 业主单位内码
/// </summary>
public const string OWNERUNIT_ID = "OWNERUNIT_ID";
/// <summary>
/// 单位类型
/// </summary>
public const string OWNERUNIT_TYPE = "OWNERUNIT_TYPE";
/// <summary>
/// 业主单位性质
/// </summary>
public const string OWNERUNIT_NATURE = "OWNERUNIT_NATURE";
/// <summary>
/// 业主单位名称
/// </summary>
public const string OWNERUNIT_NAME = "OWNERUNIT_NAME";
/// <summary>
/// 统一信用代码
/// </summary>
public const string TAXPAYER_IDENTIFYCODE = "TAXPAYER_IDENTIFYCODE";
/// <summary>
/// 开票人
/// </summary>
public const string OWNERUNIT_DRAWER = "OWNERUNIT_DRAWER";
/// <summary>
/// 开户银行
/// </summary>
public const string BANK_NAME = "BANK_NAME";
/// <summary>
/// 银行账号
/// </summary>
public const string BANK_ACCOUNT = "BANK_ACCOUNT";
/// <summary>
/// 联系人员
/// </summary>
public const string OWNERUNIT_LINKMAN = "OWNERUNIT_LINKMAN";
/// <summary>
/// 电话号码
/// </summary>
public const string OWNERUNIT_TELEPHONE = "OWNERUNIT_TELEPHONE";
/// <summary>
/// 手机号码
/// </summary>
public const string OWNERUNIT_MOBILEPHONE = "OWNERUNIT_MOBILEPHONE";
/// <summary>
/// 联系地址
/// </summary>
public const string OWNERUNIT_ADDRESS = "OWNERUNIT_ADDRESS";
/// <summary>
/// 操作人内码
/// </summary>
public const string STAFF_ID = "STAFF_ID";
/// <summary>
/// 操作人员
/// </summary>
public const string STAFF_NAME = "STAFF_NAME";
/// <summary>
/// 操作时间
/// </summary>
public const string OPERATE_DATE = "OPERATE_DATE";
/// <summary>
/// 备注
/// </summary>
public const string OWNERUNITDETAIL_DESC = "OWNERUNITDETAIL_DESC";
/// <summary>
/// 法人身份证
/// </summary>
public const string Comment_OWNERUNIT_LINKMANIDCARD = "法人身份证";
/// <summary>
/// 内码
/// </summary>
public const string Comment_OWNERUNITDETAIL_ID = "内码";
/// <summary>
/// 业主单位内码
/// </summary>
public const string Comment_OWNERUNIT_ID = "业主单位内码";
/// <summary>
/// 单位类型
/// </summary>
public const string Comment_OWNERUNIT_TYPE = "单位类型";
/// <summary>
/// 业主单位性质
/// </summary>
public const string Comment_OWNERUNIT_NATURE = "业主单位性质";
/// <summary>
/// 业主单位名称
/// </summary>
public const string Comment_OWNERUNIT_NAME = "业主单位名称";
/// <summary>
/// 统一信用代码
/// </summary>
public const string Comment_TAXPAYER_IDENTIFYCODE = "统一信用代码";
/// <summary>
/// 开票人
/// </summary>
public const string Comment_OWNERUNIT_DRAWER = "开票人";
/// <summary>
/// 开户银行
/// </summary>
public const string Comment_BANK_NAME = "开户银行";
/// <summary>
/// 银行账号
/// </summary>
public const string Comment_BANK_ACCOUNT = "银行账号";
/// <summary>
/// 联系人员
/// </summary>
public const string Comment_OWNERUNIT_LINKMAN = "联系人员";
/// <summary>
/// 电话号码
/// </summary>
public const string Comment_OWNERUNIT_TELEPHONE = "电话号码";
/// <summary>
/// 手机号码
/// </summary>
public const string Comment_OWNERUNIT_MOBILEPHONE = "手机号码";
/// <summary>
/// 联系地址
/// </summary>
public const string Comment_OWNERUNIT_ADDRESS = "联系地址";
/// <summary>
/// 操作人内码
/// </summary>
public const string Comment_STAFF_ID = "操作人内码";
/// <summary>
/// 操作人员
/// </summary>
public const string Comment_STAFF_NAME = "操作人员";
/// <summary>
/// 操作时间
/// </summary>
public const string Comment_OPERATE_DATE = "操作时间";
/// <summary>
/// 备注
/// </summary>
public const string Comment_OWNERUNITDETAIL_DESC = "备注";
}
#endregion
}