letv-payorder icon indicating copy to clipboard operation
letv-payorder copied to clipboard

乐视集团支付订单系统分库分表开源实现

Results 1 letv-payorder issues
Sort by recently updated
recently updated
newest added

``` public static String getDBInfoByUserId(int userId) { String num = String.valueOf((userId / 10) % 64 + 1); // 如果是个位数,前面补0 return num.length() == 2 ? num : "0" + num; }...