type ABC struct {
ID uint
Abc int `gorm:"unidqueIndex;
Bcd string
}
我想要 FieldAbc和Bcd一起变得独一无二
{Abc: 1, Bcd: "hello"} {Abc: 1, Bcd: "hi"}应该是有效的但是
{Abc: 1, Bcd: "hello"} {Abc: 1, Bcd: "hello"}应该是无效的
12345678_0001
相关分类