47 lines
2.1 KiB
Go
47 lines
2.1 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model操作代码。
|
||
// 生成日期:2023-07-31 11:31:49
|
||
// 生成路径: internal/app/system/model/qianqi_guangfuban.go
|
||
// 生成人:gfast
|
||
// desc:光伏板模型
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package model
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
"github.com/gogf/gf/v2/util/gmeta"
|
||
)
|
||
|
||
// QianqiGuangfubanInfoRes is the golang structure for table qianqi_guangfuban.
|
||
type QianqiGuangfubanInfoRes struct {
|
||
gmeta.Meta `orm:"table:qianqi_guangfuban"`
|
||
Id int `orm:"id,primary" json:"id"` // 序号
|
||
ProjectId string `orm:"project_id" json:"projectId"` // 项目id
|
||
Name string `orm:"name" json:"name"` // 倾斜模型
|
||
SourcePath string `orm:"source_path" json:"sourcePath"` // 资源路径
|
||
Detail string `orm:"detail" json:"detail"` // 坐标信息等
|
||
SourceId string `orm:"source_id" json:"sourceId"` // 资源id
|
||
CreateBy string `orm:"create_by" json:"createBy"` // 创建人
|
||
UpdateBy string `orm:"update_by" json:"updateBy"` // 更新人
|
||
SourceType string `orm:"source_type" json:"source_type"` // 更新人
|
||
Zuchuan_path string `orm:"zuchuan_path" json:"zuchuan_path"` // 更新人
|
||
CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` // 创建时间
|
||
UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt"` // 更新时间
|
||
DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt"` // 删除时间
|
||
}
|
||
|
||
type QianqiGuangfubanListRes struct {
|
||
Id int `json:"id"`
|
||
ProjectId string `json:"projectId"`
|
||
Name string `json:"name"`
|
||
SourcePath string `json:"sourcePath"`
|
||
Detail string `json:"detail"`
|
||
SourceId string `json:"sourceId"`
|
||
CreatedAt *gtime.Time `json:"createdAt"`
|
||
SourceType string `json:"source_type"`
|
||
Zuchuan_path string `json:"zuchuan_path"`
|
||
Src_point string `json:"src_point"`
|
||
}
|