(isEmbed bool)
| 183 | } |
| 184 | |
| 185 | func (d tmplData) isCommonStyle(isEmbed bool) bool { |
| 186 | if d.DBDriver != DBDriverMongodb && !isEmbed && !d.CrudInfo.isIDPrimaryKey() { |
| 187 | return true |
| 188 | } |
| 189 | return false |
| 190 | } |
| 191 | |
| 192 | // ConditionZero type of condition 0, used in dao template code |
| 193 | func (t tmplField) ConditionZero() string { |
no test coverage detected