query_set_info.go 283 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package domain type QuerySetInfo struct { BindTableId int // 查询集绑定的表 ReadyStatus int // 准备状态 0:正常 1:冲突状态 } func (q *QuerySetInfo) WithConflictStatus() { q.ReadyStatus = 1 } func (q *QuerySetInfo) ResolveConflictStatus() { q.ReadyStatus = 0 }