feat:完善项目管理,增加专家列表信息

This commit is contained in:
henry
2021-12-10 18:16:41 +08:00
parent 2ee564d540
commit fdcd46bf49
14 changed files with 265 additions and 109 deletions

View File

@ -1,10 +1,15 @@
package utils
import "testing"
import (
"fmt"
"strings"
"testing"
)
func TestToSnake(t *testing.T) {
src := []int{1, 2, 3, 4, 5, 6}
t.Log(src)
ReverseSlice(src)
t.Log(src)
//src := []int{1, 2, 3, 4, 5, 6}
//t.Log(src)
//ReverseSlice(src)
//t.Log(src)
t.Log(fmt.Sprintf("SELECT * FROM sys_user WHERE id IN (%v)", strings.Join([]string{"1", "2", "3"}, ",")))
}