1 Star 0 Fork 0

一只北京的小修狗/测试自动化

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
t_case_data.go 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
一只北京的小修狗 提交于 2024-10-02 12:30 . 测试
package resource
import "time"
func (TTestCaseInfo) TableName() string {
return "t_test_case_info"
}
type TTestCaseInfo struct {
Id int64 `gorm:"column:id;primary_key" json:"id"`
Name string `gorm:"column:name;unique" json:"name"`
Desc string `gorm:"column:case_desc"json:"case_desc"`
Level string `gorm:"column:level" json:"level"`
Skip bool `gorm:"column:skip" json:"skip"`
Parallel bool `gorm:"column:parallel" json:"parallel"`
TestFunc string `gorm:"column:func_name" json:"func_name"`
Input string `gorm:"column:input" json:"input"`
Expects string `gorm:"column:expects" json:"expects"`
UpdateBy string `gorm:"column:update_by" json:"update_by"`
CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
UpdateTime time.Time `gorm:"column:update_time" json:"update_time"`
}
type TRes struct {
Name string `json:"name"`
Input string `json:"input"`
}
type FillExpectRequest struct {
DBName string `json:"db_name"`
DBTableName string `json:"db_table_name"`
DBArgs map[string]interface{} `json:"db_args"`
DBResult interface{} `json:"db_result"`
RedisPsm string `json:"redis_psm"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/beijingxiugo/GolandAuto.git
git@gitee.com:beijingxiugo/GolandAuto.git
beijingxiugo
GolandAuto
测试自动化
v0.2.1

搜索帮助