xcli

Results 2 issues of xcli

> 如果属性为TargetId, 使用methodToFieldName方法问题 ``` code public static String methodToFieldName(String methodName) { return capitalize(methodName.replace("get", "")); } ``` ``` code String result = "getTargetId".replace("get", ""); // 输出值为TarId,正确应该是TargetId ``` 可以使用replaceFirst ``` code String...

hi ~ my database table design : ``` create table `users_orders` ( `id` int(11) unsigned not null auto_increment, `users` int(11) not null, `orderno` varchar(32) not null, `normal_fee` decimal(10,2) null )...