@SelectKey(keyProperty = "record.id", resultType = String.class, before = true, statement = "select replace(uuid(), '-', '')") @Options(keyProperty = "record.id", useGeneratedKeys = true) @Insert("insert into T_USER(ID,OPEN_ID,NICKNANE,AVATARURL,SEX,COUNTRY,PROVINCE,CITY,CTIME,MOBILE) " + "values(#{record.id},#{record.openId},#{record.nicknane},#{record.avatarurl},#{record.sex},#{record.country},#{record.province},#{record.city},#{record.ctime},#{record.mobile})")
int insert(@Param("record")TUser record);