docs(deployment): 更新部署手册和业务架构说明
- 更新MES和WMS服务端口配置说明 - 详细说明产线工位设备配置(扫码枪+拧紧枪) - 明确AGV配送和接驳台的模拟模式与真实对接方案 - 更新WMS中AGV配送默认模拟模式说明 - 完善厂内物流(AGV/接驳台)的业务架构约束 - 修订临时文档为详细的项目问题和解决方案规划
This commit is contained in:
@@ -113,6 +113,16 @@ func Counted(v bool) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldCounted, v))
|
||||
}
|
||||
|
||||
// CountedBy applies equality check predicate on the "counted_by" field. It's identical to CountedByEQ.
|
||||
func CountedBy(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedAt applies equality check predicate on the "counted_at" field. It's identical to CountedAtEQ.
|
||||
func CountedAt(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
||||
func UpdatedAt(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldUpdatedAt, v))
|
||||
@@ -818,6 +828,131 @@ func CountedNEQ(v bool) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNEQ(FieldCounted, v))
|
||||
}
|
||||
|
||||
// CountedByEQ applies the EQ predicate on the "counted_by" field.
|
||||
func CountedByEQ(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByNEQ applies the NEQ predicate on the "counted_by" field.
|
||||
func CountedByNEQ(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNEQ(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByIn applies the In predicate on the "counted_by" field.
|
||||
func CountedByIn(vs ...string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldIn(FieldCountedBy, vs...))
|
||||
}
|
||||
|
||||
// CountedByNotIn applies the NotIn predicate on the "counted_by" field.
|
||||
func CountedByNotIn(vs ...string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNotIn(FieldCountedBy, vs...))
|
||||
}
|
||||
|
||||
// CountedByGT applies the GT predicate on the "counted_by" field.
|
||||
func CountedByGT(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldGT(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByGTE applies the GTE predicate on the "counted_by" field.
|
||||
func CountedByGTE(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldGTE(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByLT applies the LT predicate on the "counted_by" field.
|
||||
func CountedByLT(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldLT(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByLTE applies the LTE predicate on the "counted_by" field.
|
||||
func CountedByLTE(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldLTE(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByContains applies the Contains predicate on the "counted_by" field.
|
||||
func CountedByContains(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldContains(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByHasPrefix applies the HasPrefix predicate on the "counted_by" field.
|
||||
func CountedByHasPrefix(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldHasPrefix(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByHasSuffix applies the HasSuffix predicate on the "counted_by" field.
|
||||
func CountedByHasSuffix(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldHasSuffix(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByIsNil applies the IsNil predicate on the "counted_by" field.
|
||||
func CountedByIsNil() predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldIsNull(FieldCountedBy))
|
||||
}
|
||||
|
||||
// CountedByNotNil applies the NotNil predicate on the "counted_by" field.
|
||||
func CountedByNotNil() predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNotNull(FieldCountedBy))
|
||||
}
|
||||
|
||||
// CountedByEqualFold applies the EqualFold predicate on the "counted_by" field.
|
||||
func CountedByEqualFold(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEqualFold(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedByContainsFold applies the ContainsFold predicate on the "counted_by" field.
|
||||
func CountedByContainsFold(v string) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldContainsFold(FieldCountedBy, v))
|
||||
}
|
||||
|
||||
// CountedAtEQ applies the EQ predicate on the "counted_at" field.
|
||||
func CountedAtEQ(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// CountedAtNEQ applies the NEQ predicate on the "counted_at" field.
|
||||
func CountedAtNEQ(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNEQ(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// CountedAtIn applies the In predicate on the "counted_at" field.
|
||||
func CountedAtIn(vs ...int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldIn(FieldCountedAt, vs...))
|
||||
}
|
||||
|
||||
// CountedAtNotIn applies the NotIn predicate on the "counted_at" field.
|
||||
func CountedAtNotIn(vs ...int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNotIn(FieldCountedAt, vs...))
|
||||
}
|
||||
|
||||
// CountedAtGT applies the GT predicate on the "counted_at" field.
|
||||
func CountedAtGT(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldGT(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// CountedAtGTE applies the GTE predicate on the "counted_at" field.
|
||||
func CountedAtGTE(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldGTE(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// CountedAtLT applies the LT predicate on the "counted_at" field.
|
||||
func CountedAtLT(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldLT(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// CountedAtLTE applies the LTE predicate on the "counted_at" field.
|
||||
func CountedAtLTE(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldLTE(FieldCountedAt, v))
|
||||
}
|
||||
|
||||
// CountedAtIsNil applies the IsNil predicate on the "counted_at" field.
|
||||
func CountedAtIsNil() predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldIsNull(FieldCountedAt))
|
||||
}
|
||||
|
||||
// CountedAtNotNil applies the NotNil predicate on the "counted_at" field.
|
||||
func CountedAtNotNil() predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldNotNull(FieldCountedAt))
|
||||
}
|
||||
|
||||
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
||||
func UpdatedAtEQ(v int64) predicate.StocktakeItem {
|
||||
return predicate.StocktakeItem(sql.FieldEQ(FieldUpdatedAt, v))
|
||||
|
||||
Reference in New Issue
Block a user