docs(deployment): 更新部署手册和业务架构说明

- 更新MES和WMS服务端口配置说明
- 详细说明产线工位设备配置(扫码枪+拧紧枪)
- 明确AGV配送和接驳台的模拟模式与真实对接方案
- 更新WMS中AGV配送默认模拟模式说明
- 完善厂内物流(AGV/接驳台)的业务架构约束
- 修订临时文档为详细的项目问题和解决方案规划
This commit is contained in:
SunYF
2026-09-20 14:52:36 +08:00
parent 5a33028003
commit f35e9b5b75
57 changed files with 6096 additions and 1000 deletions
@@ -35,6 +35,10 @@ const (
FieldDiffQty = "diff_qty"
// FieldCounted holds the string denoting the counted field in the database.
FieldCounted = "counted"
// FieldCountedBy holds the string denoting the counted_by field in the database.
FieldCountedBy = "counted_by"
// FieldCountedAt holds the string denoting the counted_at field in the database.
FieldCountedAt = "counted_at"
// FieldUpdatedAt holds the string denoting the updated_at field in the database.
FieldUpdatedAt = "updated_at"
// Table holds the table name of the stocktakeitem in the database.
@@ -56,6 +60,8 @@ var Columns = []string{
FieldScannedQty,
FieldDiffQty,
FieldCounted,
FieldCountedBy,
FieldCountedAt,
FieldUpdatedAt,
}
@@ -150,6 +156,16 @@ func ByCounted(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldCounted, opts...).ToFunc()
}
// ByCountedBy orders the results by the counted_by field.
func ByCountedBy(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldCountedBy, opts...).ToFunc()
}
// ByCountedAt orders the results by the counted_at field.
func ByCountedAt(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldCountedAt, opts...).ToFunc()
}
// ByUpdatedAt orders the results by the updated_at field.
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()