feat: 公告按页、身份标签、拼多多订单号、派单与抢单改造

This commit is contained in:
XingQue
2026-06-25 15:35:51 +08:00
parent d1dc65e13b
commit 9575edcfc4
17 changed files with 646 additions and 15 deletions

View File

@@ -166,6 +166,10 @@ class Order(QModel):
max_length=64, blank=True, null=True, db_index=True,
db_column='wechat_transaction_id', verbose_name='微信支付订单号',
)
ExternalOrderID = models.CharField(
max_length=64, blank=True, null=True, db_index=True,
db_column='waibu_dingdan_id', verbose_name='外部平台订单号',
)
class Meta:
db_table = 'dingdan'
@@ -510,6 +514,10 @@ class Penalty(QModel):
max_length=16, default='xq', db_index=True,
db_column='club_id', verbose_name='所属俱乐部',
)
ShopStaffUserID = models.CharField(
max_length=20, blank=True, null=True,
db_column='dianpu_kefu_id', verbose_name='店铺客服用户ID',
)
class Meta:
db_table = 'fadan'