@Override public WxUser init() { super.init(); _status = OStatus.DEFAULT.getLine().getKey(); // 关注状态 <OStatus> BYTE _openId = null; // 粉丝ID STR(100) _unionId = null; // 唯一ID STR(100) _nickname = null; // 昵称 STR(200) _sex = OSex.DEFAULT.getLine().getKey(); // 性别 <OSex> BYTE _city = null; // 城市 STR(100) _province = null; // 省份 STR(100) _country = null; // 国家 STR(100) _imageUrl = null; // 头像 STR(200) _rem = null; // 备注 STR(200) _userGroup = null; // 用户分组 <表主键:WxUserGroup> INT _subscribeTime = null; // 关注时间 TIME _invited1 = null; // 一级邀请人 <表主键:WxUser> INT _invited2 = null; // 二级邀请人 <表主键:WxUser> INT _isMember = OYn.DEFAULT.getLine().getKey(); // 是否会员 <OYn> BYTE _qrcode = null; // 专属二维码 STR(200) _qrcodeExpireTime = null; // 二维码到期时间 TIME _historyCommission = ZERO; // 历史佣金 DEC(16,2) _cashableCommission = ZERO; // 可提现佣金 DEC(16,2) _account = null; // 公众帐号 <表主键:WxAccount> INT _syncTime = null; // 同步时间 TIME _syncStatus = OYn.DEFAULT.getLine().getKey(); // 是否同步 <OYn> BYTE _rowVersion = 0; // 版本 SHORT return this; }
@Override public WmNews init() { super.init(); _title = null; // 标题 STR(64) _imageUrl = null; // 封面 STR(200) _showCoverPic = OYn.DEFAULT.getLine().getKey(); // 是否显示封面 <OYn> BYTE _author = null; // 作者 STR(8) _summary = null; // 摘要 STR(120) _content = null; // 正文 TEXT(65535) _relUrl = null; // 原文链接 STR(200) _type = ONewsType.DEFAULT.getLine().getKey(); // 图文类型 <ONewsType> BYTE _exp = null; // 扩展链接 LONG _url = null; // 自定义链接 STR(200) _picUp = null; // 上级图文 <表主键:WmNews> INT _sort = 0; // 排序号 INT _mediaId = null; // 图文ID STR(100) _status = OSyncStatus.DEFAULT.getLine().getKey(); // 同步状态 <OSyncStatus> BYTE _account = null; // 公众帐号 <表主键:WxAccount> INT _rowVersion = 0; // 版本 SHORT return this; }