@Column@ColDefine(type=ColType.INT,width=11,notNull=true)private int uid;
这样指定后,
请问问题出哪里了?我想生成int类型,长度是11
终极方式:
@ColDefine(type=ColType.INT,customType="int(11)", notNull=true)
真好,已经可以用了。非常感谢