436 lines
14 KiB
C#
436 lines
14 KiB
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SuperMap.RealEstate.EShangPush.Interface
|
|
{
|
|
#region T_RTWECHATPUSH IRTWECHATPUSH 接口
|
|
/// <summary>
|
|
/// T_RTWECHATPUSH 接口
|
|
/// </summary>
|
|
public interface IRTWECHATPUSH
|
|
{
|
|
/// <summary>
|
|
/// 人员内码
|
|
/// </summary>
|
|
System.Int32? RTWECHATPUSH_ID { get; set; }
|
|
/// <summary>
|
|
/// 人员内码 的加密字符串
|
|
/// </summary>
|
|
string RTWECHATPUSH_ID_Encrypt { get; set; }
|
|
/// <summary>
|
|
/// 公众号内码
|
|
/// </summary>
|
|
System.Int32? WECHATPUBLICSIGN_ID { get; set; }
|
|
/// <summary>
|
|
/// 微信内码
|
|
/// </summary>
|
|
System.String WECHAT_OPENID { get; set; }
|
|
/// <summary>
|
|
/// 昵称
|
|
/// </summary>
|
|
System.String NICK_NAME { get; set; }
|
|
/// <summary>
|
|
/// 分组类型
|
|
/// </summary>
|
|
System.Int32? GROUP_TYPE { get; set; }
|
|
/// <summary>
|
|
/// 用户名称
|
|
/// </summary>
|
|
System.String USER_NAME { get; set; }
|
|
/// <summary>
|
|
/// 手机号码
|
|
/// </summary>
|
|
System.String MOBILEPHONE_NUMBER { get; set; }
|
|
/// <summary>
|
|
/// 商户名称
|
|
/// </summary>
|
|
System.String BUSINESS_NAME { get; set; }
|
|
/// <summary>
|
|
/// 门店数量
|
|
/// </summary>
|
|
System.Int64? STORES_COUNT { get; set; }
|
|
/// <summary>
|
|
/// 管辖省份
|
|
/// </summary>
|
|
System.String PROVINCE_CODES { get; set; }
|
|
/// <summary>
|
|
/// 管辖区域
|
|
/// </summary>
|
|
System.String SERVERPART_IDS { get; set; }
|
|
/// <summary>
|
|
/// 管辖门店
|
|
/// </summary>
|
|
System.String SERVERPARTSHOP_IDS { get; set; }
|
|
/// <summary>
|
|
/// 验证编码
|
|
/// </summary>
|
|
System.String VERIFICATION_CODE { get; set; }
|
|
/// <summary>
|
|
/// 推送模板
|
|
/// </summary>
|
|
System.String PUSH_MODULE { get; set; }
|
|
/// <summary>
|
|
/// 推送时间
|
|
/// </summary>
|
|
System.String PUSH_TIME { get; set; }
|
|
/// <summary>
|
|
/// 首行内容
|
|
/// </summary>
|
|
System.String PUSH_TITLE { get; set; }
|
|
/// <summary>
|
|
/// 尾行内容
|
|
/// </summary>
|
|
System.String PUSH_LASTCONTENT { get; set; }
|
|
/// <summary>
|
|
/// 头像地址
|
|
/// </summary>
|
|
System.String HEADIMAGEURL { get; set; }
|
|
/// <summary>
|
|
/// 有效状态
|
|
/// </summary>
|
|
System.Int16? RTWECHATPUSH_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 RTWECHATPUSH_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_RTWECHATPUSH IModifyRTWECHATPUSH 接口
|
|
/// <summary>
|
|
/// T_RTWECHATPUSH 接口
|
|
/// </summary>
|
|
public interface IModifyRTWECHATPUSH
|
|
{
|
|
/// <summary>
|
|
/// 人员内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RTWECHATPUSH_ID { get; set; }
|
|
/// <summary>
|
|
/// 公众号内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHATPUBLICSIGN_ID { get; set; }
|
|
/// <summary>
|
|
/// 微信内码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_WECHAT_OPENID { get; set; }
|
|
/// <summary>
|
|
/// 昵称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_NICK_NAME { get; set; }
|
|
/// <summary>
|
|
/// 分组类型 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_GROUP_TYPE { get; set; }
|
|
/// <summary>
|
|
/// 用户名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_USER_NAME { get; set; }
|
|
/// <summary>
|
|
/// 手机号码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_MOBILEPHONE_NUMBER { get; set; }
|
|
/// <summary>
|
|
/// 商户名称 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_BUSINESS_NAME { get; set; }
|
|
/// <summary>
|
|
/// 门店数量 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_STORES_COUNT { get; set; }
|
|
/// <summary>
|
|
/// 管辖省份 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PROVINCE_CODES { get; set; }
|
|
/// <summary>
|
|
/// 管辖区域 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPART_IDS { get; set; }
|
|
/// <summary>
|
|
/// 管辖门店 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_SERVERPARTSHOP_IDS { get; set; }
|
|
/// <summary>
|
|
/// 验证编码 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_VERIFICATION_CODE { get; set; }
|
|
/// <summary>
|
|
/// 推送模板 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PUSH_MODULE { get; set; }
|
|
/// <summary>
|
|
/// 推送时间 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PUSH_TIME { get; set; }
|
|
/// <summary>
|
|
/// 首行内容 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PUSH_TITLE { get; set; }
|
|
/// <summary>
|
|
/// 尾行内容 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_PUSH_LASTCONTENT { get; set; }
|
|
/// <summary>
|
|
/// 头像地址 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_HEADIMAGEURL { get; set; }
|
|
/// <summary>
|
|
/// 有效状态 是否被修改,不建议直接对其赋值操作
|
|
/// </summary>
|
|
bool Modify_RTWECHATPUSH_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_RTWECHATPUSH_DESC { get; set; }
|
|
}
|
|
#endregion
|
|
|
|
#region T_RTWECHATPUSH 的表明、字段名、字段描述
|
|
/// <summary>
|
|
/// T_RTWECHATPUSH_微信公众号人员表 的字段类
|
|
/// </summary>
|
|
public class TableSchema_RTWECHATPUSH
|
|
{
|
|
/// <summary>
|
|
/// 序列名 (用于Oracle主键)
|
|
/// </summary>
|
|
public const string SequenceName = "seq_rtwechatpush";
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public const string TableName = "T_RTWECHATPUSH";
|
|
/// <summary>
|
|
/// 表注释
|
|
/// </summary>
|
|
public const string Comment_TableName = "微信公众号人员表";
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public const string KeyFieldName = "RTWECHATPUSH_ID";
|
|
/// <summary>
|
|
/// 人员内码
|
|
/// </summary>
|
|
public const string RTWECHATPUSH_ID = "RTWECHATPUSH_ID";
|
|
/// <summary>
|
|
/// 公众号内码
|
|
/// </summary>
|
|
public const string WECHATPUBLICSIGN_ID = "WECHATPUBLICSIGN_ID";
|
|
/// <summary>
|
|
/// 微信内码
|
|
/// </summary>
|
|
public const string WECHAT_OPENID = "WECHAT_OPENID";
|
|
/// <summary>
|
|
/// 昵称
|
|
/// </summary>
|
|
public const string NICK_NAME = "NICK_NAME";
|
|
/// <summary>
|
|
/// 分组类型
|
|
/// </summary>
|
|
public const string GROUP_TYPE = "GROUP_TYPE";
|
|
/// <summary>
|
|
/// 用户名称
|
|
/// </summary>
|
|
public const string USER_NAME = "USER_NAME";
|
|
/// <summary>
|
|
/// 手机号码
|
|
/// </summary>
|
|
public const string MOBILEPHONE_NUMBER = "MOBILEPHONE_NUMBER";
|
|
/// <summary>
|
|
/// 商户名称
|
|
/// </summary>
|
|
public const string BUSINESS_NAME = "BUSINESS_NAME";
|
|
/// <summary>
|
|
/// 门店数量
|
|
/// </summary>
|
|
public const string STORES_COUNT = "STORES_COUNT";
|
|
/// <summary>
|
|
/// 管辖省份
|
|
/// </summary>
|
|
public const string PROVINCE_CODES = "PROVINCE_CODES";
|
|
/// <summary>
|
|
/// 管辖区域
|
|
/// </summary>
|
|
public const string SERVERPART_IDS = "SERVERPART_IDS";
|
|
/// <summary>
|
|
/// 管辖门店
|
|
/// </summary>
|
|
public const string SERVERPARTSHOP_IDS = "SERVERPARTSHOP_IDS";
|
|
/// <summary>
|
|
/// 验证编码
|
|
/// </summary>
|
|
public const string VERIFICATION_CODE = "VERIFICATION_CODE";
|
|
/// <summary>
|
|
/// 推送模板
|
|
/// </summary>
|
|
public const string PUSH_MODULE = "PUSH_MODULE";
|
|
/// <summary>
|
|
/// 推送时间
|
|
/// </summary>
|
|
public const string PUSH_TIME = "PUSH_TIME";
|
|
/// <summary>
|
|
/// 首行内容
|
|
/// </summary>
|
|
public const string PUSH_TITLE = "PUSH_TITLE";
|
|
/// <summary>
|
|
/// 尾行内容
|
|
/// </summary>
|
|
public const string PUSH_LASTCONTENT = "PUSH_LASTCONTENT";
|
|
/// <summary>
|
|
/// 头像地址
|
|
/// </summary>
|
|
public const string HEADIMAGEURL = "HEADIMAGEURL";
|
|
/// <summary>
|
|
/// 有效状态
|
|
/// </summary>
|
|
public const string RTWECHATPUSH_STATE = "RTWECHATPUSH_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 RTWECHATPUSH_DESC = "RTWECHATPUSH_DESC";
|
|
/// <summary>
|
|
/// 人员内码
|
|
/// </summary>
|
|
public const string Comment_RTWECHATPUSH_ID = "人员内码";
|
|
/// <summary>
|
|
/// 公众号内码
|
|
/// </summary>
|
|
public const string Comment_WECHATPUBLICSIGN_ID = "公众号内码";
|
|
/// <summary>
|
|
/// 微信内码
|
|
/// </summary>
|
|
public const string Comment_WECHAT_OPENID = "微信内码";
|
|
/// <summary>
|
|
/// 昵称
|
|
/// </summary>
|
|
public const string Comment_NICK_NAME = "昵称";
|
|
/// <summary>
|
|
/// 分组类型
|
|
/// </summary>
|
|
public const string Comment_GROUP_TYPE = "分组类型";
|
|
/// <summary>
|
|
/// 用户名称
|
|
/// </summary>
|
|
public const string Comment_USER_NAME = "用户名称";
|
|
/// <summary>
|
|
/// 手机号码
|
|
/// </summary>
|
|
public const string Comment_MOBILEPHONE_NUMBER = "手机号码";
|
|
/// <summary>
|
|
/// 商户名称
|
|
/// </summary>
|
|
public const string Comment_BUSINESS_NAME = "商户名称";
|
|
/// <summary>
|
|
/// 门店数量
|
|
/// </summary>
|
|
public const string Comment_STORES_COUNT = "门店数量";
|
|
/// <summary>
|
|
/// 管辖省份
|
|
/// </summary>
|
|
public const string Comment_PROVINCE_CODES = "管辖省份";
|
|
/// <summary>
|
|
/// 管辖区域
|
|
/// </summary>
|
|
public const string Comment_SERVERPART_IDS = "管辖区域";
|
|
/// <summary>
|
|
/// 管辖门店
|
|
/// </summary>
|
|
public const string Comment_SERVERPARTSHOP_IDS = "管辖门店";
|
|
/// <summary>
|
|
/// 验证编码
|
|
/// </summary>
|
|
public const string Comment_VERIFICATION_CODE = "验证编码";
|
|
/// <summary>
|
|
/// 推送模板
|
|
/// </summary>
|
|
public const string Comment_PUSH_MODULE = "推送模板";
|
|
/// <summary>
|
|
/// 推送时间
|
|
/// </summary>
|
|
public const string Comment_PUSH_TIME = "推送时间";
|
|
/// <summary>
|
|
/// 首行内容
|
|
/// </summary>
|
|
public const string Comment_PUSH_TITLE = "首行内容";
|
|
/// <summary>
|
|
/// 尾行内容
|
|
/// </summary>
|
|
public const string Comment_PUSH_LASTCONTENT = "尾行内容";
|
|
/// <summary>
|
|
/// 头像地址
|
|
/// </summary>
|
|
public const string Comment_HEADIMAGEURL = "头像地址";
|
|
/// <summary>
|
|
/// 有效状态
|
|
/// </summary>
|
|
public const string Comment_RTWECHATPUSH_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_RTWECHATPUSH_DESC = "备注";
|
|
}
|
|
#endregion
|
|
}
|