59 lines
3.9 KiB
Go
59 lines
3.9 KiB
Go
// ==========================================================================
|
||
// GFast自动生成model entity操作代码。
|
||
// 生成日期:2025-08-11 17:00:45
|
||
// 生成路径: internal/app/businesses/model/entity/species_survey.go
|
||
// 生成人:gfast
|
||
// desc:物种调查
|
||
// company:云南奇讯科技有限公司
|
||
// ==========================================================================
|
||
|
||
package do
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
"github.com/gogf/gf/v2/util/gmeta"
|
||
)
|
||
|
||
// SpeciesSurvey is the golang structure for table species_survey.
|
||
type SpeciesSurvey struct {
|
||
gmeta.Meta `orm:"table:species_survey, do:true"`
|
||
Id interface{} `orm:"id,primary" json:"id"` //
|
||
SpeciesCode interface{} `orm:"species_code" json:"speciesCode"` // 调查记录编码
|
||
Province interface{} `orm:"province" json:"province"` // 省(自治区、直辖市)
|
||
City interface{} `orm:"city" json:"city"` // 市(地、州、盟)
|
||
County interface{} `orm:"county" json:"county"` // 县(区、市、旗)
|
||
Code interface{} `orm:"code" json:"code"` // 区划代码
|
||
CourseName interface{} `orm:"course_name" json:"courseName"` // 踏查路线名称
|
||
MarkArea interface{} `orm:"mark_area" json:"markArea"` // 踏查总面积(平方千米)
|
||
MarkName interface{} `orm:"mark_name" json:"markName"` // 踏查点名称
|
||
Longitude interface{} `orm:"longitude" json:"longitude"` // 经度
|
||
Dimensionality interface{} `orm:"dimensionality" json:"dimensionality"` // 纬度
|
||
Elevation interface{} `orm:"elevation" json:"elevation"` // 海拔
|
||
Temperature interface{} `orm:"temperature" json:"temperature"` // 温度
|
||
Precipitation interface{} `orm:"precipitation" json:"precipitation"` // 降水
|
||
MarkAreaM interface{} `orm:"mark_area_m" json:"markAreaM"` // 踏查点面积(亩)
|
||
HabitatType interface{} `orm:"habitat_type" json:"habitatType"` // 生境类型
|
||
SoilType interface{} `orm:"soil_type" json:"soilType"` // 土壤类型
|
||
SpeciesName interface{} `orm:"species_name" json:"speciesName"` // 物种名称
|
||
HarmObject interface{} `orm:"harm_object" json:"harmObject"` // 危害对象
|
||
HappenArea interface{} `orm:"happen_area" json:"happenArea"` // 发生面积(亩)
|
||
Treatment interface{} `orm:"treatment" json:"treatment"` // 治理措施(有 无)
|
||
IsStandard interface{} `orm:"is_standard" json:"isStandard"` // 是否设置标准样地
|
||
StandardCode interface{} `orm:"standard_code" json:"standardCode"` // 标准样地编号
|
||
IsSpecimen interface{} `orm:"is_specimen" json:"isSpecimen"` // 是否采集标本
|
||
SpecimenCode interface{} `orm:"specimen_code" json:"specimenCode"` // 标本编号
|
||
Img interface{} `orm:"img" json:"img"` // 图片
|
||
SourcesData interface{} `orm:"sources_data" json:"sourcesData"` // 数据来源
|
||
CreateUser interface{} `orm:"create_user" json:"createUser"` // 数据采集人
|
||
CreateDate *gtime.Time `orm:"create_date" json:"createDate"` // 数据采集日期
|
||
AuditUser interface{} `orm:"audit_user" json:"auditUser"` // 数据核查人
|
||
AuditDate *gtime.Time `orm:"audit_date" json:"auditDate"` // 数据核查日期
|
||
AuditStatus interface{} `orm:"audit_status" json:"auditStatus"` //
|
||
AuditView interface{} `orm:"audit_view" json:"auditView"` //
|
||
Remark interface{} `orm:"remark" json:"remark"` //
|
||
Version interface{} `orm:"version" json:"version"` //
|
||
CreatedAt *gtime.Time `orm:"created_at" json:"createdAt"` //
|
||
UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt"` //
|
||
DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt"` //
|
||
}
|