peewee 關于一些示例筆記

模型

圖片表:

class FloweshopImages(BaseModel):
    ctime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)
    name = TextField(constraints=[SQL("DEFAULT ''::text")], index=True)
    path = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    url = TextField(constraints=[SQL("DEFAULT ''::text")], index=True)
    utime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)

    class Meta:
        table_name = 'floweshop_images'

商品圖片表集:

class FloweshopGoodsImages(BaseModel):
    ctime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)
    goods_id = TextField(column_name='goods_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    images_id = IntegerField(column_name='images_id', index=True, null=True)
    sort = IntegerField(constraints=[SQL("DEFAULT 0")], null=True)
    type = IntegerField(null=True)

    class Meta:
        table_name = 'floweshop_goods_images'

商品款式表

class FloweshopGoodsStyle(BaseModel):
    ctime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)
    ctprice = DecimalField(null=True)
    goods_id = TextField(column_name='goods_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    mktprice = DecimalField(null=True)
    name = TextField(constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    sbprice = DecimalField(null=True)
    utime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)

    class Meta:
        table_name = 'floweshop_goods_style'

商品表:


class FloweshopGoods(BaseModel):
    attribute_id = TextField(column_name='attribute_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    bn = TextField(constraints=[SQL("DEFAULT ''::text")], index=True)
    brand = TextField(column_name='brand_id', constraints=[SQL("DEFAULT '00000'::text")], index=True, null=True)
    buy_count = IntegerField(null=True)
    comments_count = IntegerField(constraints=[SQL("DEFAULT 0")], null=True)
    ctime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)
    ctprice = DecimalField(null=True)
    des_selling_point = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    describe = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    downmarkettime = DateTimeField(null=True)
    freeze_stock = IntegerField(null=True)
    goods_cat_id = TextField(column_name='goods_cat_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    goods_type_id = TextField(column_name='goods_type_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    # image_id = TextField(column_name='image_id', constraints=[SQL("DEFAULT ''::text")], null=True)
    image_id = IntegerField(null=True)
    image_intro_id = TextField(column_name='image_intro_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    is_hot = IntegerField(index=True, null=True)
    is_in_marketable = IntegerField(null=True)
    is_nomal_virtual = IntegerField(null=True)
    is_promotion = IntegerField(index=True, null=True)
    is_recommend = IntegerField(index=True, null=True)
    label_ids = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    mktprice = DecimalField(null=True)
    name = TextField(constraints=[SQL("DEFAULT ''::text")], index=True)
    params = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    price_range = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    remark = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    sbprice = DecimalField(null=True)
    sort = IntegerField(constraints=[SQL("DEFAULT 0")], index=True, null=True)
    stock = IntegerField(null=True)
    style_id = TextField(column_name='style_id', constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    unit = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    upmarkettime = DateTimeField(null=True)
    utime = DateTimeField(constraints=[SQL("DEFAULT now()")], null=True)
    view_count = IntegerField(constraints=[SQL("DEFAULT 0")], null=True)
    weight = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    wx_share_des = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)

    class Meta:
        table_name = 'floweshop_goods'

添加測試數(shù)據(jù):


    # 添加圖片表的記錄
    FloweshopImages(name='商品1圖片', url='http://ysj.iread.wo.com.cn/ysjpic/res/ysjzengguofansy.jpg?v=0dYiV', path='').save()
    FloweshopImages(name='商品1圖片', url='http://ysj.iread.wo.com.cn/ysjpic/res/caijunbn.png?v=erwLX', path='').save()
    FloweshopImages(name='商品1圖片', url='http://ysj.iread.wo.com.cn/ysjpic/res/qianlaoshisp.jpg?v=xkNne', path='').save()
    FloweshopImages(name='商品1介紹', url='http://ysj.iread.wo.com.cn/ysjpic/res/qianlaoshisp.jpg?v=xkNne', path='').save()
    FloweshopImages(name='商品1介紹', url='http://ysj.iread.wo.com.cn/ysjpic/res/qianlaoshisp.jpg?v=xkNne', path='').save()
    FloweshopImages(name='商品2介紹', url='http://ysj.iread.wo.com.cn/ysjpic/res/qianlaoshisp.jpg?v=xkNne', path='').save()
    FloweshopImages(name='商品3介紹', url='http://ysj.iread.wo.com.cn/ysjpic/res/qianlaoshisp.jpg?v=xkNne', path='').save()


    # 添加商品圖片表
    FloweshopGoodsImages(images_id=1, goods_id='gc100010', type='1').save()
    FloweshopGoodsImages(images_id=2, goods_id='gc100011', type='1').save()
    FloweshopGoodsImages(images_id=2, goods_id='gc100012', type='1').save()


    # 商品表
    FloweshopGoods(bn='gc100010', name='商品1', describe='商品介紹文字描述', des_selling_point='商品簡介賣點描述', wx_share_des='微信分享時候的顯示的描述', ctprice=345.34,
                   mktprice=55854.54, sbprice=56.55, price_range='2342~324', image_id='3,4', goods_cat_id=1, goods_type_id=1, is_nomal_virtual=1, is_in_marketable=2, stock=100,
                   freeze_stock=0, image_intro_id='34,45,345', attribute_id='1,2,3', style_id='1,2,3').save()

    # 商品表image_id---后續(xù)修改為int類型
    FloweshopGoods(bn='gc100011', name='商品2', describe='商品介紹文字描述', des_selling_point='商品簡介賣點描述', wx_share_des='微信分享時候的顯示的描述', ctprice=345.34,
                   mktprice=55854.54, sbprice=56.55, price_range='2342~324', image_id='5', goods_cat_id=2, goods_type_id=2, is_nomal_virtual=1, is_in_marketable=2, stock=100,
                   freeze_stock=0, image_intro_id='34,45,345', attribute_id='1,2,3', style_id='3,5').save()

    # 商品表image_id---后續(xù)修改為int類型
    FloweshopGoods(bn='gc100011', name='商品2', describe='商品介紹文字描述', des_selling_point='商品簡介賣點描述', wx_share_des='微信分享時候的顯示的描述', ctprice=345.34,
                   mktprice=55854.54, sbprice=56.55, price_range='2342~324', image_id='6', goods_cat_id=2, goods_type_id=2, is_nomal_virtual=1, is_in_marketable=2, stock=100,
                   freeze_stock=0, image_intro_id='34,45,345', attribute_id='1,2,3', style_id='3,5').save()

示例需求:

1:查詢所有的商品列表下的對應的圖片

使用點:
1:使用了dicts()和沒使用dicts()的有很大的區(qū)別
2:連表中有相同的字段重名的重新命名alias的使用

query1 = FloweshopGoods.select(FloweshopGoodsImages.images_id.alias('圖片XXX'), FloweshopGoodsImages.goods_id, FloweshopImages.name.alias('XXXXXXXXXXXX'), FloweshopGoods).join(FloweshopGoodsImages, on=(
        FloweshopGoodsImages.images_id == FloweshopGoods.image_id)) \
    .join(FloweshopImages, on=(FloweshopGoodsImages.images_id == FloweshopImages.id)).dicts()

查詢的結果為:

============查詢結果==============
{'upmarkettime': None, 'stock': 100, 'goods_type_id': '1', 'wx_share_des': '微信分享時候的顯示的描述', 'XXXXXXXXXXXX': '商品1圖片', 'brand': '00000', 'is_nomal_virtual': 1, 'style_id': '1,2,3', 'attribute_id': '1,2,3', 'mktprice': Decimal('55854.54'), 'ctime': datetime.datetime(2019, 3, 29, 18, 33, 14), 'name': '商品1', 'id': 1, 'sbprice': Decimal('56.55'), 'ctprice': Decimal('345.34'), '圖片XXX': 1, 'unit': '', 'image_intro_id': '34,45,345', 'buy_count': None, 'describe': '商品介紹文字描述', 'weight': '', 'is_recommend': None, 'downmarkettime': None, 'image_id': 1, 'price_range': '2342~324', 'sort': 0, 'des_selling_point': '商品簡介賣點描述', 'is_promotion': None, 'label_ids': '', 'utime': datetime.datetime(2019, 3, 29, 18, 33, 14), 'remark': '', 'goods_id': 'gc100010', 'freeze_stock': 0, 'comments_count': 0, 'bn': 'gc100010', 'view_count': 0, 'is_in_marketable': 2, 'goods_cat_id': '1', 'is_hot': None, 'params': ''}
{'upmarkettime': None, 'stock': 100, 'goods_type_id': '2', 'wx_share_des': '微信分享時候的顯示的描述', 'XXXXXXXXXXXX': '商品1圖片', 'brand': '00000', 'is_nomal_virtual': 1, 'style_id': '3,5', 'attribute_id': '1,2,3', 'mktprice': Decimal('55854.54'), 'ctime': datetime.datetime(2019, 3, 29, 18, 33, 14), 'name': '商品2', 'id': 2, 'sbprice': Decimal('56.55'), 'ctprice': Decimal('345.34'), '圖片XXX': 2, 'unit': '', 'image_intro_id': '34,45,345', 'buy_count': None, 'describe': '商品介紹文字描述', 'weight': '', 'is_recommend': None, 'downmarkettime': None, 'image_id': 2, 'price_range': '2342~324', 'sort': 0, 'des_selling_point': '商品簡介賣點描述', 'is_promotion': None, 'label_ids': '', 'utime': datetime.datetime(2019, 3, 29, 18, 33, 14), 'remark': '', 'goods_id': 'gc100011', 'freeze_stock': 0, 'comments_count': 0, 'bn': 'gc100011', 'view_count': 0, 'is_in_marketable': 2, 'goods_cat_id': '2', 'is_hot': None, 'params': ''}
{'upmarkettime': None, 'stock': 100, 'goods_type_id': '2', 'wx_share_des': '微信分享時候的顯示的描述', 'XXXXXXXXXXXX': '商品3介紹', 'brand': '00000', 'is_nomal_virtual': 1, 'style_id': '3,5', 'attribute_id': '1,2,3', 'mktprice': Decimal('55854.54'), 'ctime': datetime.datetime(2019, 3, 29, 18, 33, 14), 'name': '商品2', 'id': 3, 'sbprice': Decimal('56.55'), 'ctprice': Decimal('345.34'), '圖片XXX': 7, 'unit': '', 'image_intro_id': '34,45,345', 'buy_count': None, 'describe': '商品介紹文字描述', 'weight': '', 'is_recommend': None, 'downmarkettime': None, 'image_id': 7, 'price_range': '2342~324', 'sort': 0, 'des_selling_point': '商品簡介賣點描述', 'is_promotion': None, 'label_ids': '', 'utime': datetime.datetime(2019, 3, 29, 18, 33, 14), 'remark': '', 'goods_id': 'gc100012', 'freeze_stock': 0, 'comments_count': 0, 'bn': 'gc100011', 'view_count': 0, 'is_in_marketable': 2, 'goods_cat_id': '2', 'is_hot': None, 'params': ''}

2:查詢所有的指定商品下對應的款式列表(注意沒有使用dicts())

query1 = FloweshopGoods.select(FloweshopGoods, FloweshopGoodsStyle).join(FloweshopGoodsStyle, on=(
        FloweshopGoodsStyle.goods_id == FloweshopGoods.bn)).where(FloweshopGoods.bn == 'gc100010')

# 查詢出
from basic.utils.json import json_helper
# 查詢出
for v in query1:
    print(dir(v))
    print(json_helper.class_to_dict(v.floweshopgoodsstyle))
# result_list = [v for v in query1]  # 使用列表推導式辱魁?
# print(result_list)

結果:

=====查詢款式=====================
{'ctime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'goods_id': 'gc100010', 'mktprice': Decimal('122.99'), 'name': '玫瑰之約', 'ctprice': Decimal('222.99'), 'id': 1, 'sbprice': Decimal('4534.56'), 'utime': datetime.datetime(2019, 3, 29, 18, 36, 32)}
{'ctime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'goods_id': 'gc100010', 'mktprice': Decimal('122.99'), 'name': '愛上之約', 'ctprice': Decimal('222.99'), 'id': 2, 'sbprice': Decimal('4534.56'), 'utime': datetime.datetime(2019, 3, 29, 18, 36, 32)}
{'ctime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'goods_id': 'gc100010', 'mktprice': Decimal('122.99'), 'name': '345之約', 'ctprice': Decimal('222.99'), 'id': 3, 'sbprice': Decimal('4534.56'), 'utime': datetime.datetime(2019, 3, 29, 18, 36, 32)}

3:查詢所有的指定商品下對應的款式列表(注意沒有使用dicts())

print('=====查詢款式=====================')
query1 = FloweshopGoodsStyle.select( FloweshopGoodsStyle).join(FloweshopGoods, on=(
        FloweshopGoodsStyle.goods_id == FloweshopGoods.bn)).where(FloweshopGoods.bn == 'gc100010')
for v in query1:
    # print(dir(v))
    print(json_helper.class_to_dict(v))
    # print(json_helper.dict_to_json(json_helper.class_to_dict(v)))
    # print(json_helper.class_to_dict(v.floweshopgoodsstyle))

沒有使用dicts()的情況下,連表的時候包含有自定義的屬性字段的時候艰争,會無法查詢出對于的記錄:

image.png

取消 的情況下可以 :

image.png
image.png

結果:

{'utime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'sbprice': Decimal('4534.56'), 'ctime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'ctprice': Decimal('222.99'), 'name': '玫瑰之約', 'id': 1, 'goods_id': 'gc100010', 'mktprice': Decimal('122.99')}
{'utime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'sbprice': Decimal('4534.56'), 'ctime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'ctprice': Decimal('222.99'), 'name': '愛上之約', 'id': 2, 'goods_id': 'gc100010', 'mktprice': Decimal('122.99')}
{'utime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'sbprice': Decimal('4534.56'), 'ctime': datetime.datetime(2019, 3, 29, 18, 36, 32), 'ctprice': Decimal('222.99'), 'name': '345之約', 'id': 3, 'goods_id': 'gc100010', 'mktprice': Decimal('122.99')}

關于peewee更新的可以給予Mode形式也可以基于的字典的形式進行更新:

q = Person.update({
    'height': 1.75
}).where(Person.name == 'Jack')
q.execute()

# 根據(jù)Appid獲取一個模型
# def get_mode_cp_partners_and_product_info(appid='', membershipid=''):
#     cache_key = 'xmly_directcharge_cp_partners:' + str(appid)
#     # 獲取緩存值
#     result = redis_cache_helper.get(cache_key)
#     # 判斷是否有值
#     if result:
#         return result
#     # 數(shù)據(jù)庫中讀取
#     with session_scope():
#         # 說明.get_or_none
#         # 御雕,select()
#         # 函數(shù)里面需要寫上自己需要的返回值愚臀,否則聯(lián)表之后會發(fā)現(xiàn)竟然還是只有自己
#         # cls
#         # 的字段瓦胎,就會感覺到很疑惑秃踩。
#         result = CpPartners \
#             .select(CpPartners,
#                     ProductInfo.goodsname,
#                     ProductInfo.time_expire,
#                     ProductInfo.membershipid,
#                     ProductInfo.membership_name,
#                     ProductInfo.valid_days,
#                     ProductInfo.price,
#                     ProductInfo.total_fee
#                     ) \
#             .join(ProductInfo, on=(CpPartners.appid == ProductInfo.appid)).where((CpPartners.appid == appid) & (ProductInfo.membershipid == membershipid)).dicts().get()
#             # .join(ProductInfo, on=(CpPartners.appid == ProductInfo.appid)).where(CpPartners.appid == appid).dicts().get()
#
#
#         if result:
#             # 注意事項艾猜,如果不直接的轉dicts买喧,那么需要使用的下面的方式進行 融合
#             # print(result.wxpartners)
#             # result_cppartners = json_helper.class_to_dict(result)
#             # result_wxpartners = json_helper.class_to_dict(result.wxpartners)
#             # # 合并兩個字典
#             # result = dict(result_cppartners, **result_wxpartners)
#             # 把對應的結果保存到緩存中-時間超時 60*60=一個小時 --10天后過期
#             redis_cache_helper.set(cache_key, result, timeout=60 * 60 * 24 * 10)
#         return result

關于PEEWEE 分組統(tǒng)計和 按小時統(tǒng)計

表結果:

class TelephoneRechargeInfo(BaseModel):
    amount = TextField(null=True)
    appid = TextField(constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    channeid = TextField(null=True)
    end_time = DateTimeField(null=True)
    membership_name = TextField(null=True)
    membershipid = TextField(null=True)
    mobile = TextField(constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    out_trade_no = TextField(constraints=[SQL("DEFAULT ''::text")], index=True, null=True)
    remark = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    retrun_code = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    retrun_descript = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    retrun_innercode = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    retrun_result = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)
    send_time = DateTimeField(null=True)
    start_time = DateTimeField(index=True, null=True)
    state = IntegerField(constraints=[SQL("DEFAULT 0")], index=True, null=True)
    taskid = TextField(constraints=[SQL("DEFAULT ''::text")], null=True)

    class Meta:
        table_name = 'telephone_recharge_info'

分組統(tǒng)計SQL查詢語句為:

SELECT to_char(send_time, 'HH24') as d,COUNT(id) as total_countl FROM telephone_recharge_info WHERE send_time>'2019-08-02 10:14:09' GROUP BY d ORDER BY d;

使用PEEWEE實現(xiàn)的方式為:

    print(TaskTelephoneRechargeInfo.select(TaskTelephoneRechargeInfo.send_time.hour.alias('小時'),fn.COUNT(TaskTelephoneRechargeInfo.id))
         .where((TaskTelephoneRechargeInfo.send_time > '2019-08-02 10:14:09')).group_by(TaskTelephoneRechargeInfo.send_time.hour).order_by(TaskTelephoneRechargeInfo.send_time.hour))

打印出來的sQL語句為:
SELECT EXTRACT('hour' FROM "t1"."send_time") AS "小時", COUNT("t1"."id") FROM "telephone_recharge_info" AS "t1" WHERE ("t1"."send_time" > '2019-08-02 10:14:09') GROUP BY EXTRACT('hour' FROM "t1"."send_time") ORDER BY EXTRACT('hour' FROM "t1"."send_time")

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市匆赃,隨后出現(xiàn)的幾起案子淤毛,更是在濱河造成了極大的恐慌,老刑警劉巖算柳,帶你破解...
    沈念sama閱讀 216,692評論 6 501
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件低淡,死亡現(xiàn)場離奇詭異,居然都是意外死亡瞬项,警方通過查閱死者的電腦和手機蔗蹋,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,482評論 3 392
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來囱淋,“玉大人纸颜,你說我怎么就攤上這事∫镩伲” “怎么了胁孙?”我有些...
    開封第一講書人閱讀 162,995評論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長称鳞。 經(jīng)常有香客問我涮较,道長,這世上最難降的妖魔是什么冈止? 我笑而不...
    開封第一講書人閱讀 58,223評論 1 292
  • 正文 為了忘掉前任狂票,我火速辦了婚禮,結果婚禮上熙暴,老公的妹妹穿的比我還像新娘闺属。我一直安慰自己慌盯,他們只是感情好,可當我...
    茶點故事閱讀 67,245評論 6 388
  • 文/花漫 我一把揭開白布掂器。 她就那樣靜靜地躺著亚皂,像睡著了一般。 火紅的嫁衣襯著肌膚如雪国瓮。 梳的紋絲不亂的頭發(fā)上灭必,一...
    開封第一講書人閱讀 51,208評論 1 299
  • 那天,我揣著相機與錄音乃摹,去河邊找鬼禁漓。 笑死,一個胖子當著我的面吹牛孵睬,可吹牛的內(nèi)容都是我干的播歼。 我是一名探鬼主播,決...
    沈念sama閱讀 40,091評論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼掰读,長吁一口氣:“原來是場噩夢啊……” “哼秘狞!你這毒婦竟也來了?” 一聲冷哼從身側響起磷支,我...
    開封第一講書人閱讀 38,929評論 0 274
  • 序言:老撾萬榮一對情侶失蹤谒撼,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后雾狈,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體廓潜,經(jīng)...
    沈念sama閱讀 45,346評論 1 311
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,570評論 2 333
  • 正文 我和宋清朗相戀三年善榛,在試婚紗的時候發(fā)現(xiàn)自己被綠了辩蛋。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 39,739評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡移盆,死狀恐怖悼院,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情咒循,我是刑警寧澤据途,帶...
    沈念sama閱讀 35,437評論 5 344
  • 正文 年R本政府宣布,位于F島的核電站叙甸,受9級特大地震影響颖医,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜裆蒸,卻給世界環(huán)境...
    茶點故事閱讀 41,037評論 3 326
  • 文/蒙蒙 一熔萧、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦佛致、人聲如沸贮缕。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,677評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽感昼。三九已至,卻和暖如春肋演,著一層夾襖步出監(jiān)牢的瞬間抑诸,已是汗流浹背烂琴。 一陣腳步聲響...
    開封第一講書人閱讀 32,833評論 1 269
  • 我被黑心中介騙來泰國打工爹殊, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人奸绷。 一個月前我還...
    沈念sama閱讀 47,760評論 2 369
  • 正文 我出身青樓梗夸,卻偏偏與公主長得像,于是被迫代替她去往敵國和親号醉。 傳聞我的和親對象是個殘疾皇子反症,可洞房花燭夜當晚...
    茶點故事閱讀 44,647評論 2 354

推薦閱讀更多精彩內(nèi)容