Files
zmkgC/internal/app/system/model/qianqi_fangzhen.go
2025-07-07 20:11:59 +08:00

46 lines
2.0 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// ==========================================================================
// GFast自动生成model操作代码。
// 生成日期2023-07-31 11:20:54
// 生成路径: internal/app/system/model/qianqi_fangzhen.go
// 生成人gfast
// desc:方阵
// company:云南奇讯科技有限公司
// ==========================================================================
package model
import (
"github.com/gogf/gf/v2/os/gtime"
"github.com/gogf/gf/v2/util/gmeta"
)
// QianqiFangzhenInfoRes is the golang structure for table qianqi_fangzhen.
type QianqiFangzhenInfoRes struct {
gmeta.Meta `orm:"table:qianqi_fangzhen"`
Id int `orm:"id,primary" json:"id"` // 序号
ProjectId string `orm:"project_id" json:"projectId"` // 项目id
Name string `orm:"name" json:"name"` // 名称
SourceId string `orm:"source_id" json:"sourceId"` // 资源
SourcePath string `orm:"source_path" json:"sourcePath"` // 资源路径
XiangbianId string `orm:"xiangbian_id" json:"xiangbianId"` // 箱变id
CreateBy string `orm:"create_by" json:"createBy"` // 创建人
UpdateBy string `orm:"update_by" json:"updateBy"` // 更新人
Detail string `orm:"detail" json:"detail"` // 坐标信息
SourceType string `orm:"source_type" json:"sourceType"` // 坐标信息
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 QianqiFangzhenListRes struct {
Id int `json:"id"`
ProjectId string `json:"projectId"`
Name string `json:"name"`
SourceId string `json:"sourceId"`
SourcePath string `json:"sourcePath"`
XiangbianId string `json:"xiangbianId"`
CreatedAt *gtime.Time `json:"createdAt"`
SourceType string `json:"source_type"`
Detail string `json:"detail"`
}