|
|
@@ -95,6 +95,13 @@ func (PGHr) HrClassDetailStatusEdit(optUserId int64, objectShopId int64, jsonStr
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+func (PGHr) HrClassDetailAddConfirm(optUserId int64, objectShopId int64, jsonStr string, verfStr string) (result string, err error) {
|
|
|
+ err = getClient().Raw("select fn_hr_class_detail_add_confirm(? ,? ,?, ? )", optUserId, objectShopId, jsonStr, verfStr).
|
|
|
+ Scan(&result).Error
|
|
|
+
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
func (PGHr) HrClassStartPrepare(optUserId int64, objectShopId int64, jsonStr string, verfStr string) (result string, err error) {
|
|
|
err = getClient().Raw("select fn_hr_class_start_prepare(? ,? ,?, ? )", optUserId, objectShopId, jsonStr, verfStr).
|
|
|
Scan(&result).Error
|