1
0
forked from erp-dev/erp

feat: agent api complete

This commit is contained in:
2026-04-15 00:20:13 +08:00
parent 714d6287fe
commit 4f3109546d
9 changed files with 553 additions and 6 deletions

View File

@@ -197,7 +197,14 @@ class Shipment(ModelBase):
related_name='created_shipments',
verbose_name='创建人'
)
geo_coordinates = models.JSONField(
null=True,
blank=True,
verbose_name='地理坐标',
help_text='由 Geo 系统返回的坐标信息,结构由调用方决定,后端不作校验',
)
class Meta:
db_table = 'shipment'
verbose_name = '出货单'