|
|
@@ -816,12 +816,14 @@ func (d *PlatFollowupDao) checkColumnsName(dataScope map[string]interface{}, arg
|
|
|
}
|
|
|
}
|
|
|
bigColumns := "is_big"
|
|
|
- if isBig, ok := dataScope[bigColumns]; ok && isBig.(bool) {
|
|
|
+ if isBig, ok := dataScope[bigColumns]; ok {
|
|
|
if bigCol, ok := colsContrast[bigColumns]; ok {
|
|
|
orColsMap[bigCol.(string)] = isBig
|
|
|
delete(colsContrast, bigCol.(string))
|
|
|
} else {
|
|
|
- orColsMap[tableAs+bigColumns] = isBig
|
|
|
+ if ok, _ := d.M.HasField(bigColumns); ok && specialFlag {
|
|
|
+ orColsMap[tableAs+bigColumns] = isBig
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|