|
|
|
@ -1089,9 +1089,9 @@ func DeleteTeacherOrgInfoAll(personIds []string) error {
|
|
|
|
|
作者:黄海
|
|
|
|
|
时间:2020-08-05
|
|
|
|
|
*/
|
|
|
|
|
func UpdateSortId(personId string, orgId string, sortId int32) {
|
|
|
|
|
sql := `update t_base_teacher_org set sort_id=? where person_id=? and org_id=?`
|
|
|
|
|
db.SQL(sql, sortId, personId, orgId).Execute()
|
|
|
|
|
func UpdateSortId(personId string, sortId int32) {
|
|
|
|
|
sql := `update t_base_teacher_org set sort_id=? where person_id=?`
|
|
|
|
|
db.SQL(sql, sortId, personId).Execute()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|