| 1234567891011121314151617181920212223242526272829303132333435363738 | package modelimport (	pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"	"github.com/nicksnyder/go-i18n/v2/i18n")type ConfigSingleFactorAnalysisMethod struct {	Id           int32                                     `json:"id"`	PastureId    int64                                     `json:"pastureId"`	Kind         pasturePb.SingleFactorAnalysisMethod_Kind `json:"kind"`	I18nFieldTag string                                    `json:"i18NFieldTag"`	Remarks      string                                    `json:"remarks"`	IsShow       pasturePb.IsShow_Kind                     `json:"is_show"`	CreatedAt    int64                                     `json:"created_at"`	UpdatedAt    int64                                     `json:"updated_at"`}func (c *ConfigSingleFactorAnalysisMethod) TableName() string {	return "config_single_factor_analysis_method"}type ConfigSingleFactorAnalysisMethodSlice []*ConfigSingleFactorAnalysisMethodfunc (c ConfigSingleFactorAnalysisMethodSlice) ToPB(userModel *UserModel) []*pasturePb.ConfigOptionsList {	res := make([]*pasturePb.ConfigOptionsList, 0)	for _, v := range c {		label, _ := userModel.LanguageContent.Localize(&i18n.LocalizeConfig{			MessageID: v.I18nFieldTag,		})		res = append(res, &pasturePb.ConfigOptionsList{			Value:    int32(v.Kind),			Label:    label,			Disabled: true,		})	}	return res}
 |