52 lines
1.9 KiB
Go
52 lines
1.9 KiB
Go
|
|
package platform
|
||
|
|
|
||
|
|
import (
|
||
|
|
"git.apinb.com/bsm-sdk/core/errcode"
|
||
|
|
"git.apinb.com/bsm-sdk/core/infra"
|
||
|
|
"git.apinb.com/heqiapp/platforms/backend/api/internal/impl"
|
||
|
|
"git.apinb.com/heqiapp/platforms/backend/api/internal/models"
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ListStaff 查询服务人员分页列表。
|
||
|
|
func ListStaff(ctx *gin.Context) { listPage[models.StaffAccount](ctx) }
|
||
|
|
|
||
|
|
// GetStaff 查询一个服务人员档案。
|
||
|
|
func GetStaff(ctx *gin.Context) { getByIdentity[models.StaffAccount](ctx) }
|
||
|
|
|
||
|
|
// CreateStaff 创建服务人员档案。
|
||
|
|
func CreateStaff(ctx *gin.Context) {
|
||
|
|
var request models.StaffAccount
|
||
|
|
if err := ctx.ShouldBindJSON(&request); err != nil || request.Name == "" {
|
||
|
|
infra.Response.Error(ctx, errcode.ErrInvalidArgument)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
request.Entity = newEntity("draft")
|
||
|
|
if request.WorkStatus == "" {
|
||
|
|
request.WorkStatus = "off_duty"
|
||
|
|
}
|
||
|
|
if err := impl.DBService.Create(&request).Error; err != nil {
|
||
|
|
infra.Response.Error(ctx, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
infra.Response.Success(ctx, request)
|
||
|
|
}
|
||
|
|
|
||
|
|
// UpdateStaff 更新服务人员档案。
|
||
|
|
func UpdateStaff(ctx *gin.Context) {
|
||
|
|
var request struct {
|
||
|
|
Name string `json:"name" binding:"required,max=64"`
|
||
|
|
Phone string `json:"phone" binding:"max=32"`
|
||
|
|
Avatar string `json:"avatar" binding:"max=512"`
|
||
|
|
RoleCode string `json:"role_code" binding:"max=64"`
|
||
|
|
GasBasicID uint64 `json:"gas_basic_id"`
|
||
|
|
DeliveryBasicID uint64 `json:"delivery_basic_id"`
|
||
|
|
WorkStatus string `json:"work_status" binding:"max=32"`
|
||
|
|
}
|
||
|
|
if err := ctx.ShouldBindJSON(&request); err != nil {
|
||
|
|
infra.Response.Error(ctx, errcode.ErrInvalidArgument)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
updateByIdentity(ctx, &models.StaffAccount{}, gin.H{"name": request.Name, "phone": request.Phone, "avatar": request.Avatar, "role_code": request.RoleCode, "gas_basic_id": request.GasBasicID, "delivery_basic_id": request.DeliveryBasicID, "work_status": request.WorkStatus})
|
||
|
|
}
|