388 lines
13 KiB
C#
388 lines
13 KiB
C#
using System.Runtime.Serialization;
|
||
|
||
namespace SuperMap.RealEstate.EShangPush.Interface
|
||
{
|
||
#region T_RTWECHATAPP IRTWECHATAPP 接口
|
||
/// <summary>
|
||
/// T_RTWECHATAPP 接口
|
||
/// </summary>
|
||
public interface IRTWECHATAPP
|
||
{
|
||
/// <summary>
|
||
/// 人员内码
|
||
/// </summary>
|
||
System.Int32? RTWECHATAPP_ID { get; set; }
|
||
/// <summary>
|
||
/// 人员内码 的加密字符串
|
||
/// </summary>
|
||
string RTWECHATAPP_ID_Encrypt { get; set; }
|
||
/// <summary>
|
||
/// 小程序内码
|
||
/// </summary>
|
||
System.Int32? WECHATAPPSIGN_ID { get; set; }
|
||
/// <summary>
|
||
/// 公众号内码
|
||
/// </summary>
|
||
System.Int32? WECHATPUBLICSIGN_ID { get; set; }
|
||
/// <summary>
|
||
/// 微信内码
|
||
/// </summary>
|
||
System.String WECHATAPP_OPENID { get; set; }
|
||
/// <summary>
|
||
/// 分组类型
|
||
/// </summary>
|
||
System.Int32? GROUP_TYPE { get; set; }
|
||
/// <summary>
|
||
/// 会员内码
|
||
/// </summary>
|
||
System.Int32? MEMBERSHIP_ID { get; set; }
|
||
/// <summary>
|
||
/// 昵称
|
||
/// </summary>
|
||
System.String NICK_NAME { get; set; }
|
||
/// <summary>
|
||
/// 性别:1男,2女,0未知
|
||
/// </summary>
|
||
System.Int16? USER_GENDER { get; set; }
|
||
/// <summary>
|
||
/// 用户电话
|
||
/// </summary>
|
||
System.String PHONE_NUMBER { get; set; }
|
||
/// <summary>
|
||
/// 用户所在城市
|
||
/// </summary>
|
||
System.String USER_CITY { get; set; }
|
||
/// <summary>
|
||
/// 用户所在省份
|
||
/// </summary>
|
||
System.String USER_PROVINCE { get; set; }
|
||
/// <summary>
|
||
/// 用户所在国家
|
||
/// </summary>
|
||
System.String USER_COUNTRY { get; set; }
|
||
/// <summary>
|
||
/// 用户头像
|
||
/// </summary>
|
||
System.String USER_AVATARURL { get; set; }
|
||
/// <summary>
|
||
/// 用户的语言
|
||
/// </summary>
|
||
System.String USER_LANGUAGE { get; set; }
|
||
/// <summary>
|
||
/// 用户在开放平台的唯一标识符
|
||
/// </summary>
|
||
System.String USER_UNIONID { get; set; }
|
||
/// <summary>
|
||
/// 有效状态
|
||
/// </summary>
|
||
System.Int16? RTWECHATAPP_STATE { 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 RTWECHATAPP_DESC { get; set; }
|
||
}
|
||
#endregion
|
||
|
||
#region T_RTWECHATAPP IModifyRTWECHATAPP 接口
|
||
/// <summary>
|
||
/// T_RTWECHATAPP 接口
|
||
/// </summary>
|
||
public interface IModifyRTWECHATAPP
|
||
{
|
||
/// <summary>
|
||
/// 人员内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_RTWECHATAPP_ID { get; set; }
|
||
/// <summary>
|
||
/// 小程序内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_WECHATAPPSIGN_ID { get; set; }
|
||
/// <summary>
|
||
/// 公众号内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_WECHATPUBLICSIGN_ID { get; set; }
|
||
/// <summary>
|
||
/// 微信内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_WECHATAPP_OPENID { get; set; }
|
||
/// <summary>
|
||
/// 分组类型 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_GROUP_TYPE { get; set; }
|
||
/// <summary>
|
||
/// 会员内码 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_MEMBERSHIP_ID { get; set; }
|
||
/// <summary>
|
||
/// 昵称 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_NICK_NAME { get; set; }
|
||
/// <summary>
|
||
/// 性别:1男,2女,0未知 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_GENDER { get; set; }
|
||
/// <summary>
|
||
/// 用户电话 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_PHONE_NUMBER { get; set; }
|
||
/// <summary>
|
||
/// 用户所在城市 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_CITY { get; set; }
|
||
/// <summary>
|
||
/// 用户所在省份 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_PROVINCE { get; set; }
|
||
/// <summary>
|
||
/// 用户所在国家 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_COUNTRY { get; set; }
|
||
/// <summary>
|
||
/// 用户头像 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_AVATARURL { get; set; }
|
||
/// <summary>
|
||
/// 用户的语言 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_LANGUAGE { get; set; }
|
||
/// <summary>
|
||
/// 用户在开放平台的唯一标识符 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_USER_UNIONID { get; set; }
|
||
/// <summary>
|
||
/// 有效状态 是否被修改,不建议直接对其赋值操作
|
||
/// </summary>
|
||
bool Modify_RTWECHATAPP_STATE { 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_RTWECHATAPP_DESC { get; set; }
|
||
}
|
||
#endregion
|
||
|
||
#region T_RTWECHATAPP 的表明、字段名、字段描述
|
||
/// <summary>
|
||
/// T_RTWECHATAPP_微信小程序人员表 的字段类
|
||
/// </summary>
|
||
public class TableSchema_RTWECHATAPP
|
||
{
|
||
/// <summary>
|
||
/// 序列名 (用于Oracle主键)
|
||
/// </summary>
|
||
public const string SequenceName = "seq_rtwechatapp";
|
||
/// <summary>
|
||
/// 表名
|
||
/// </summary>
|
||
public const string TableName = "T_RTWECHATAPP";
|
||
/// <summary>
|
||
/// 表注释
|
||
/// </summary>
|
||
public const string Comment_TableName = "微信小程序人员表";
|
||
/// <summary>
|
||
/// 主键
|
||
/// </summary>
|
||
public const string KeyFieldName = "RTWECHATAPP_ID";
|
||
/// <summary>
|
||
/// 人员内码
|
||
/// </summary>
|
||
public const string RTWECHATAPP_ID = "RTWECHATAPP_ID";
|
||
/// <summary>
|
||
/// 小程序内码
|
||
/// </summary>
|
||
public const string WECHATAPPSIGN_ID = "WECHATAPPSIGN_ID";
|
||
/// <summary>
|
||
/// 公众号内码
|
||
/// </summary>
|
||
public const string WECHATPUBLICSIGN_ID = "WECHATPUBLICSIGN_ID";
|
||
/// <summary>
|
||
/// 微信内码
|
||
/// </summary>
|
||
public const string WECHATAPP_OPENID = "WECHATAPP_OPENID";
|
||
/// <summary>
|
||
/// 分组类型
|
||
/// </summary>
|
||
public const string GROUP_TYPE = "GROUP_TYPE";
|
||
/// <summary>
|
||
/// 会员内码
|
||
/// </summary>
|
||
public const string MEMBERSHIP_ID = "MEMBERSHIP_ID";
|
||
/// <summary>
|
||
/// 昵称
|
||
/// </summary>
|
||
public const string NICK_NAME = "NICK_NAME";
|
||
/// <summary>
|
||
/// 性别:1男,2女,0未知
|
||
/// </summary>
|
||
public const string USER_GENDER = "USER_GENDER";
|
||
/// <summary>
|
||
/// 用户电话
|
||
/// </summary>
|
||
public const string PHONE_NUMBER = "PHONE_NUMBER";
|
||
/// <summary>
|
||
/// 用户所在城市
|
||
/// </summary>
|
||
public const string USER_CITY = "USER_CITY";
|
||
/// <summary>
|
||
/// 用户所在省份
|
||
/// </summary>
|
||
public const string USER_PROVINCE = "USER_PROVINCE";
|
||
/// <summary>
|
||
/// 用户所在国家
|
||
/// </summary>
|
||
public const string USER_COUNTRY = "USER_COUNTRY";
|
||
/// <summary>
|
||
/// 用户头像
|
||
/// </summary>
|
||
public const string USER_AVATARURL = "USER_AVATARURL";
|
||
/// <summary>
|
||
/// 用户的语言
|
||
/// </summary>
|
||
public const string USER_LANGUAGE = "USER_LANGUAGE";
|
||
/// <summary>
|
||
/// 用户在开放平台的唯一标识符
|
||
/// </summary>
|
||
public const string USER_UNIONID = "USER_UNIONID";
|
||
/// <summary>
|
||
/// 有效状态
|
||
/// </summary>
|
||
public const string RTWECHATAPP_STATE = "RTWECHATAPP_STATE";
|
||
/// <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 RTWECHATAPP_DESC = "RTWECHATAPP_DESC";
|
||
/// <summary>
|
||
/// 人员内码
|
||
/// </summary>
|
||
public const string Comment_RTWECHATAPP_ID = "人员内码";
|
||
/// <summary>
|
||
/// 小程序内码
|
||
/// </summary>
|
||
public const string Comment_WECHATAPPSIGN_ID = "小程序内码";
|
||
/// <summary>
|
||
/// 公众号内码
|
||
/// </summary>
|
||
public const string Comment_WECHATPUBLICSIGN_ID = "公众号内码";
|
||
/// <summary>
|
||
/// 微信内码
|
||
/// </summary>
|
||
public const string Comment_WECHATAPP_OPENID = "微信内码";
|
||
/// <summary>
|
||
/// 分组类型
|
||
/// </summary>
|
||
public const string Comment_GROUP_TYPE = "分组类型";
|
||
/// <summary>
|
||
/// 会员内码
|
||
/// </summary>
|
||
public const string Comment_MEMBERSHIP_ID = "会员内码";
|
||
/// <summary>
|
||
/// 昵称
|
||
/// </summary>
|
||
public const string Comment_NICK_NAME = "昵称";
|
||
/// <summary>
|
||
/// 性别:1男,2女,0未知
|
||
/// </summary>
|
||
public const string Comment_USER_GENDER = "性别:1男,2女,0未知";
|
||
/// <summary>
|
||
/// 用户电话
|
||
/// </summary>
|
||
public const string Comment_PHONE_NUMBER = "用户电话";
|
||
/// <summary>
|
||
/// 用户所在城市
|
||
/// </summary>
|
||
public const string Comment_USER_CITY = "用户所在城市";
|
||
/// <summary>
|
||
/// 用户所在省份
|
||
/// </summary>
|
||
public const string Comment_USER_PROVINCE = "用户所在省份";
|
||
/// <summary>
|
||
/// 用户所在国家
|
||
/// </summary>
|
||
public const string Comment_USER_COUNTRY = "用户所在国家";
|
||
/// <summary>
|
||
/// 用户头像
|
||
/// </summary>
|
||
public const string Comment_USER_AVATARURL = "用户头像";
|
||
/// <summary>
|
||
/// 用户的语言
|
||
/// </summary>
|
||
public const string Comment_USER_LANGUAGE = "用户的语言";
|
||
/// <summary>
|
||
/// 用户在开放平台的唯一标识符
|
||
/// </summary>
|
||
public const string Comment_USER_UNIONID = "用户在开放平台的唯一标识符";
|
||
/// <summary>
|
||
/// 有效状态
|
||
/// </summary>
|
||
public const string Comment_RTWECHATAPP_STATE = "有效状态";
|
||
/// <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_RTWECHATAPP_DESC = "备注";
|
||
}
|
||
#endregion
|
||
}
|