260 lines
8.6 KiB
C#
260 lines
8.6 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.EShangPush.Interface
|
|
{
|
|
#region T_WECHATPUBLICSIGN IWECHATPUBLICSIGN 接口
|
|
/// <summary>
|
|
/// T_WECHATPUBLICSIGN 接口
|
|
/// </summary>
|
|
public interface IWECHATPUBLICSIGN
|
|
{
|
|
/// <summary>
|
|
/// 公众号内码
|
|
/// </summary>
|
|
System.Int32? WECHATPUBLICSIGN_ID { get; set; }
|
|
/// <summary>
|
|
/// 公众号内码 的加密字符串
|
|
/// </summary>
|
|
string WECHATPUBLICSIGN_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
System.String WECHATPUBLICSIGN_CODE { get; set; }
|
|
/// <summary>
|
|
/// 公众号名称
|
|
/// </summary>
|
|
System.String WECHATPUBLICSIGN_NAME { get; set; }
|
|
/// <summary>
|
|
/// 应用ID
|
|
/// </summary>
|
|
System.String WECHAT_APPID { get; set; }
|
|
/// <summary>
|
|
/// 应用秘钥
|
|
/// </summary>
|
|
System.String WECHAT_APPSECRET { get; set; }
|
|
/// <summary>
|
|
/// 接口地址
|
|
/// </summary>
|
|
System.String INTERFACE_ADDRESS { get; set; }
|
|
/// <summary>
|
|
/// 业主单位内码
|
|
/// </summary>
|
|
System.Int32? OWNERUNIT_ID { get; set; }
|
|
/// <summary>
|
|
/// 业主单位名称
|
|
/// </summary>
|
|
System.String OWNERUNIT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 添加时间
|
|
/// </summary>
|
|
System.DateTime? ADDTIME { 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 WECHATPUBLICSIGN_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_WECHATPUBLICSIGN IModifyWECHATPUBLICSIGN 接口
|
|
/// <summary>
|
|
/// T_WECHATPUBLICSIGN 接口
|
|
/// </summary>
|
|
public interface IModifyWECHATPUBLICSIGN
|
|
{
|
|
/// <summary>
|
|
/// 公众号内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHATPUBLICSIGN_ID { get; set; }
|
|
/// <summary>
|
|
/// 编码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHATPUBLICSIGN_CODE { get; set; }
|
|
/// <summary>
|
|
/// 公众号名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHATPUBLICSIGN_NAME { get; set; }
|
|
/// <summary>
|
|
/// 应用ID 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHAT_APPID { get; set; }
|
|
/// <summary>
|
|
/// 应用秘钥 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHAT_APPSECRET { get; set; }
|
|
/// <summary>
|
|
/// 接口地址 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_INTERFACE_ADDRESS { get; set; }
|
|
/// <summary>
|
|
/// 业主单位内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OWNERUNIT_ID { get; set; }
|
|
/// <summary>
|
|
/// 业主单位名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_OWNERUNIT_NAME { get; set; }
|
|
/// <summary>
|
|
/// 添加时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_ADDTIME { 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_WECHATPUBLICSIGN_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_WECHATPUBLICSIGN 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_WECHATPUBLICSIGN_微信公众号 的字段类
|
|
/// </summary>
|
|
public class TableSchema_WECHATPUBLICSIGN
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_wechatpublicsign";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_WECHATPUBLICSIGN";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "微信公众号";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "WECHATPUBLICSIGN_ID";
|
|
/// <summary>
|
|
/// 公众号内码
|
|
/// </summary>
|
|
public const string WECHATPUBLICSIGN_ID = "WECHATPUBLICSIGN_ID";
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public const string WECHATPUBLICSIGN_CODE = "WECHATPUBLICSIGN_CODE";
|
|
/// <summary>
|
|
/// 公众号名称
|
|
/// </summary>
|
|
public const string WECHATPUBLICSIGN_NAME = "WECHATPUBLICSIGN_NAME";
|
|
/// <summary>
|
|
/// 应用ID
|
|
/// </summary>
|
|
public const string WECHAT_APPID = "WECHAT_APPID";
|
|
/// <summary>
|
|
/// 应用秘钥
|
|
/// </summary>
|
|
public const string WECHAT_APPSECRET = "WECHAT_APPSECRET";
|
|
/// <summary>
|
|
/// 接口地址
|
|
/// </summary>
|
|
public const string INTERFACE_ADDRESS = "INTERFACE_ADDRESS";
|
|
/// <summary>
|
|
/// 业主单位内码
|
|
/// </summary>
|
|
public const string OWNERUNIT_ID = "OWNERUNIT_ID";
|
|
/// <summary>
|
|
/// 业主单位名称
|
|
/// </summary>
|
|
public const string OWNERUNIT_NAME = "OWNERUNIT_NAME";
|
|
/// <summary>
|
|
/// 添加时间
|
|
/// </summary>
|
|
public const string ADDTIME = "ADDTIME";
|
|
/// <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 WECHATPUBLICSIGN_DESC = "WECHATPUBLICSIGN_DESC";
|
|
/// <summary>
|
|
/// 公众号内码
|
|
/// </summary>
|
|
public const string Comment_WECHATPUBLICSIGN_ID = "公众号内码";
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public const string Comment_WECHATPUBLICSIGN_CODE = "编码";
|
|
/// <summary>
|
|
/// 公众号名称
|
|
/// </summary>
|
|
public const string Comment_WECHATPUBLICSIGN_NAME = "公众号名称";
|
|
/// <summary>
|
|
/// 应用ID
|
|
/// </summary>
|
|
public const string Comment_WECHAT_APPID = "应用ID";
|
|
/// <summary>
|
|
/// 应用秘钥
|
|
/// </summary>
|
|
public const string Comment_WECHAT_APPSECRET = "应用秘钥";
|
|
/// <summary>
|
|
/// 接口地址
|
|
/// </summary>
|
|
public const string Comment_INTERFACE_ADDRESS = "接口地址";
|
|
/// <summary>
|
|
/// 业主单位内码
|
|
/// </summary>
|
|
public const string Comment_OWNERUNIT_ID = "业主单位内码";
|
|
/// <summary>
|
|
/// 业主单位名称
|
|
/// </summary>
|
|
public const string Comment_OWNERUNIT_NAME = "业主单位名称";
|
|
/// <summary>
|
|
/// 添加时间
|
|
/// </summary>
|
|
public const string Comment_ADDTIME = "添加时间";
|
|
/// <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_WECHATPUBLICSIGN_DESC = "备注";
|
|
}
|
|
#endregion
|
|
}
|