审查视图

pkg/application/evaluation_template/command/template_create.go 1.3 KB
1 2 3 4
package command

import (
	"github.com/beego/beego/v2/core/validation"
5
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
郑周 authored
6
	"unicode/utf8"
7 8 9
)

type CreateTemplateCommand struct {
10 11 12 13 14
	CompanyId    int64                 `cname:"公司ID" json:"companyId"`
	CreatorId    int64                 `cname:"创建人ID" json:"creatorId"`
	Name         string                `cname:"模板名称" json:"name" valid:"Required"`
	Describe     string                `cname:"模板描述" json:"describe"`
	NodeContents []*domain.NodeContent `cname:"环节-评估内容" json:"nodeContents"`
15
	State        int                   `cname:"状态(0待完成配置、1待启用、2启用、3停用)"`
16 17 18 19 20 21 22 23 24 25 26 27
}

func (in *CreateTemplateCommand) Valid(validation *validation.Validation) {
	if in.CompanyId == 0 {
		validation.SetError("companyId", "公司ID无效")
		return
	}
	if in.CreatorId == 0 {
		validation.SetError("creatorId", "创建人ID无效")
		return
	}
郑周 authored
28 29
	// 这个才是真正计算字符串文字长度的 utf8.RuneCountInString(in.Name)
	if utf8.RuneCountInString(in.Name) > 40 {
30 31 32
		validation.SetError("name", "模板名称最大长度40个字符")
		return
	}
33
郑周 authored
34
	if utf8.RuneCountInString(in.Describe) > 100 {
35 36 37
		validation.SetError("describe", "备注最大长度100个字符")
		return
	}
38
}