feat: 指定单打手响应查询与提交接口
新增 zdcx/zdhf 接口及订单表指定响应字段,供抢单页想接/不想接/等会接。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
39
orders/migrations/0014_order_assigned_response.py
Normal file
39
orders/migrations/0014_order_assigned_response.py
Normal file
@@ -0,0 +1,39 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('orders', '0013_fakegrabordershufflestate_ordersequence'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='order',
|
||||
name='AssignedResponse',
|
||||
field=models.PositiveSmallIntegerField(
|
||||
blank=True, null=True,
|
||||
db_column='zhiding_hf',
|
||||
verbose_name='指定打手响应 1想接 2不想接 3等会接',
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='order',
|
||||
name='AssignedResponseAt',
|
||||
field=models.DateTimeField(
|
||||
blank=True, null=True,
|
||||
db_column='zhiding_hf_sj',
|
||||
verbose_name='指定响应时间',
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='order',
|
||||
name='AssignedLaterNote',
|
||||
field=models.CharField(
|
||||
blank=True, default='',
|
||||
max_length=100,
|
||||
db_column='zhiding_dhj_sm',
|
||||
verbose_name='等会接说明',
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user