diff --git a/models/agtagents.gen.go b/models/agtagents.gen.go new file mode 100644 index 0000000..60e6510 --- /dev/null +++ b/models/agtagents.gen.go @@ -0,0 +1,24 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameAgtAgent = "agtAgents" + +// AgtAgent mapped from table +type AgtAgent struct { + AgentID int32 `gorm:"column:agentID;primaryKey" json:"agentID"` + DivisionID int32 `gorm:"column:divisionID" json:"divisionID"` + CorporationID int32 `gorm:"column:corporationID" json:"corporationID"` + LocationID int32 `gorm:"column:locationID" json:"locationID"` + Level int32 `gorm:"column:level" json:"level"` + Quality int32 `gorm:"column:quality" json:"quality"` + AgentTypeID int32 `gorm:"column:agentTypeID" json:"agentTypeID"` + IsLocator bool `gorm:"column:isLocator" json:"isLocator"` +} + +// TableName AgtAgent's table name +func (*AgtAgent) TableName() string { + return TableNameAgtAgent +} diff --git a/models/agtagentsinspace.gen.go b/models/agtagentsinspace.gen.go new file mode 100644 index 0000000..9f511a0 --- /dev/null +++ b/models/agtagentsinspace.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameAgtAgentsInSpace = "agtAgentsInSpace" + +// AgtAgentsInSpace mapped from table +type AgtAgentsInSpace struct { + AgentID int32 `gorm:"column:agentID;primaryKey" json:"agentID"` + DungeonID int32 `gorm:"column:dungeonID" json:"dungeonID"` + SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"` + SpawnPointID int32 `gorm:"column:spawnPointID" json:"spawnPointID"` + TypeID int32 `gorm:"column:typeID" json:"typeID"` +} + +// TableName AgtAgentsInSpace's table name +func (*AgtAgentsInSpace) TableName() string { + return TableNameAgtAgentsInSpace +} diff --git a/models/agtagenttypes.gen.go b/models/agtagenttypes.gen.go new file mode 100644 index 0000000..5c525fc --- /dev/null +++ b/models/agtagenttypes.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameAgtAgentType = "agtAgentTypes" + +// AgtAgentType mapped from table +type AgtAgentType struct { + AgentTypeID int32 `gorm:"column:agentTypeID;primaryKey" json:"agentTypeID"` + AgentType string `gorm:"column:agentType" json:"agentType"` +} + +// TableName AgtAgentType's table name +func (*AgtAgentType) TableName() string { + return TableNameAgtAgentType +} diff --git a/models/agtresearchagents.gen.go b/models/agtresearchagents.gen.go new file mode 100644 index 0000000..6109a17 --- /dev/null +++ b/models/agtresearchagents.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameAgtResearchAgent = "agtResearchAgents" + +// AgtResearchAgent mapped from table +type AgtResearchAgent struct { + AgentID int32 `gorm:"column:agentID;primaryKey" json:"agentID"` + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` +} + +// TableName AgtResearchAgent's table name +func (*AgtResearchAgent) TableName() string { + return TableNameAgtResearchAgent +} diff --git a/models/certcerts.gen.go b/models/certcerts.gen.go new file mode 100644 index 0000000..22c9682 --- /dev/null +++ b/models/certcerts.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCertCert = "certCerts" + +// CertCert mapped from table +type CertCert struct { + CertID int32 `gorm:"column:certID;primaryKey" json:"certID"` + Description string `gorm:"column:description" json:"description"` + GroupID int32 `gorm:"column:groupID" json:"groupID"` + Name string `gorm:"column:name" json:"name"` +} + +// TableName CertCert's table name +func (*CertCert) TableName() string { + return TableNameCertCert +} diff --git a/models/certmasteries.gen.go b/models/certmasteries.gen.go new file mode 100644 index 0000000..00460f1 --- /dev/null +++ b/models/certmasteries.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCertMastery = "certMasteries" + +// CertMastery mapped from table +type CertMastery struct { + TypeID int32 `gorm:"column:typeID" json:"typeID"` + MasteryLevel int32 `gorm:"column:masteryLevel" json:"masteryLevel"` + CertID int32 `gorm:"column:certID" json:"certID"` +} + +// TableName CertMastery's table name +func (*CertMastery) TableName() string { + return TableNameCertMastery +} diff --git a/models/certskills.gen.go b/models/certskills.gen.go new file mode 100644 index 0000000..3aff047 --- /dev/null +++ b/models/certskills.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCertSkill = "certSkills" + +// CertSkill mapped from table +type CertSkill struct { + CertID int32 `gorm:"column:certID" json:"certID"` + SkillID int32 `gorm:"column:skillID" json:"skillID"` + CertLevelInt int32 `gorm:"column:certLevelInt" json:"certLevelInt"` + SkillLevel int32 `gorm:"column:skillLevel" json:"skillLevel"` + CertLevelText string `gorm:"column:certLevelText" json:"certLevelText"` +} + +// TableName CertSkill's table name +func (*CertSkill) TableName() string { + return TableNameCertSkill +} diff --git a/models/chrancestries.gen.go b/models/chrancestries.gen.go new file mode 100644 index 0000000..b663e4e --- /dev/null +++ b/models/chrancestries.gen.go @@ -0,0 +1,27 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameChrAncestry = "chrAncestries" + +// ChrAncestry mapped from table +type ChrAncestry struct { + AncestryID int32 `gorm:"column:ancestryID;primaryKey" json:"ancestryID"` + AncestryName string `gorm:"column:ancestryName" json:"ancestryName"` + BloodlineID int32 `gorm:"column:bloodlineID" json:"bloodlineID"` + Description string `gorm:"column:description" json:"description"` + Perception int32 `gorm:"column:perception" json:"perception"` + Willpower int32 `gorm:"column:willpower" json:"willpower"` + Charisma int32 `gorm:"column:charisma" json:"charisma"` + Memory int32 `gorm:"column:memory" json:"memory"` + Intelligence int32 `gorm:"column:intelligence" json:"intelligence"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + ShortDescription string `gorm:"column:shortDescription" json:"shortDescription"` +} + +// TableName ChrAncestry's table name +func (*ChrAncestry) TableName() string { + return TableNameChrAncestry +} diff --git a/models/chrattributes.gen.go b/models/chrattributes.gen.go new file mode 100644 index 0000000..710703d --- /dev/null +++ b/models/chrattributes.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameChrAttribute = "chrAttributes" + +// ChrAttribute mapped from table +type ChrAttribute struct { + AttributeID int32 `gorm:"column:attributeID;primaryKey" json:"attributeID"` + AttributeName string `gorm:"column:attributeName" json:"attributeName"` + Description string `gorm:"column:description" json:"description"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + ShortDescription string `gorm:"column:shortDescription" json:"shortDescription"` + Notes string `gorm:"column:notes" json:"notes"` +} + +// TableName ChrAttribute's table name +func (*ChrAttribute) TableName() string { + return TableNameChrAttribute +} diff --git a/models/chrbloodlines.gen.go b/models/chrbloodlines.gen.go new file mode 100644 index 0000000..72ae20f --- /dev/null +++ b/models/chrbloodlines.gen.go @@ -0,0 +1,33 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameChrBloodline = "chrBloodlines" + +// ChrBloodline mapped from table +type ChrBloodline struct { + BloodlineID int32 `gorm:"column:bloodlineID;primaryKey" json:"bloodlineID"` + BloodlineName string `gorm:"column:bloodlineName" json:"bloodlineName"` + RaceID int32 `gorm:"column:raceID" json:"raceID"` + Description string `gorm:"column:description" json:"description"` + MaleDescription string `gorm:"column:maleDescription" json:"maleDescription"` + FemaleDescription string `gorm:"column:femaleDescription" json:"femaleDescription"` + ShipTypeID int32 `gorm:"column:shipTypeID" json:"shipTypeID"` + CorporationID int32 `gorm:"column:corporationID" json:"corporationID"` + Perception int32 `gorm:"column:perception" json:"perception"` + Willpower int32 `gorm:"column:willpower" json:"willpower"` + Charisma int32 `gorm:"column:charisma" json:"charisma"` + Memory int32 `gorm:"column:memory" json:"memory"` + Intelligence int32 `gorm:"column:intelligence" json:"intelligence"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + ShortDescription string `gorm:"column:shortDescription" json:"shortDescription"` + ShortMaleDescription string `gorm:"column:shortMaleDescription" json:"shortMaleDescription"` + ShortFemaleDescription string `gorm:"column:shortFemaleDescription" json:"shortFemaleDescription"` +} + +// TableName ChrBloodline's table name +func (*ChrBloodline) TableName() string { + return TableNameChrBloodline +} diff --git a/models/chrfactions.gen.go b/models/chrfactions.gen.go new file mode 100644 index 0000000..f9efc51 --- /dev/null +++ b/models/chrfactions.gen.go @@ -0,0 +1,27 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameChrFaction = "chrFactions" + +// ChrFaction mapped from table +type ChrFaction struct { + FactionID int32 `gorm:"column:factionID;primaryKey" json:"factionID"` + FactionName string `gorm:"column:factionName" json:"factionName"` + Description string `gorm:"column:description" json:"description"` + RaceIDs int32 `gorm:"column:raceIDs" json:"raceIDs"` + SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"` + CorporationID int32 `gorm:"column:corporationID" json:"corporationID"` + SizeFactor float64 `gorm:"column:sizeFactor" json:"sizeFactor"` + StationCount int32 `gorm:"column:stationCount" json:"stationCount"` + StationSystemCount int32 `gorm:"column:stationSystemCount" json:"stationSystemCount"` + MilitiaCorporationID int32 `gorm:"column:militiaCorporationID" json:"militiaCorporationID"` + IconID int32 `gorm:"column:iconID" json:"iconID"` +} + +// TableName ChrFaction's table name +func (*ChrFaction) TableName() string { + return TableNameChrFaction +} diff --git a/models/chrraces.gen.go b/models/chrraces.gen.go new file mode 100644 index 0000000..2d5672d --- /dev/null +++ b/models/chrraces.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameChrRace = "chrRaces" + +// ChrRace mapped from table +type ChrRace struct { + RaceID int32 `gorm:"column:raceID;primaryKey" json:"raceID"` + RaceName string `gorm:"column:raceName" json:"raceName"` + Description string `gorm:"column:description" json:"description"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + ShortDescription string `gorm:"column:shortDescription" json:"shortDescription"` +} + +// TableName ChrRace's table name +func (*ChrRace) TableName() string { + return TableNameChrRace +} diff --git a/models/crpactivities.gen.go b/models/crpactivities.gen.go new file mode 100644 index 0000000..5ad45ad --- /dev/null +++ b/models/crpactivities.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCrpActivity = "crpActivities" + +// CrpActivity mapped from table +type CrpActivity struct { + ActivityID int32 `gorm:"column:activityID;primaryKey" json:"activityID"` + ActivityName string `gorm:"column:activityName" json:"activityName"` + Description string `gorm:"column:description" json:"description"` +} + +// TableName CrpActivity's table name +func (*CrpActivity) TableName() string { + return TableNameCrpActivity +} diff --git a/models/crpnpccorporationdivisions.gen.go b/models/crpnpccorporationdivisions.gen.go new file mode 100644 index 0000000..436fde4 --- /dev/null +++ b/models/crpnpccorporationdivisions.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCrpNPCCorporationDivision = "crpNPCCorporationDivisions" + +// CrpNPCCorporationDivision mapped from table +type CrpNPCCorporationDivision struct { + CorporationID int32 `gorm:"column:corporationID;primaryKey" json:"corporationID"` + DivisionID int32 `gorm:"column:divisionID;primaryKey" json:"divisionID"` + Size int32 `gorm:"column:size" json:"size"` +} + +// TableName CrpNPCCorporationDivision's table name +func (*CrpNPCCorporationDivision) TableName() string { + return TableNameCrpNPCCorporationDivision +} diff --git a/models/crpnpccorporationresearchfields.gen.go b/models/crpnpccorporationresearchfields.gen.go new file mode 100644 index 0000000..cb177f7 --- /dev/null +++ b/models/crpnpccorporationresearchfields.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCrpNPCCorporationResearchField = "crpNPCCorporationResearchFields" + +// CrpNPCCorporationResearchField mapped from table +type CrpNPCCorporationResearchField struct { + SkillID int32 `gorm:"column:skillID;primaryKey" json:"skillID"` + CorporationID int32 `gorm:"column:corporationID;primaryKey" json:"corporationID"` +} + +// TableName CrpNPCCorporationResearchField's table name +func (*CrpNPCCorporationResearchField) TableName() string { + return TableNameCrpNPCCorporationResearchField +} diff --git a/models/crpnpccorporations.gen.go b/models/crpnpccorporations.gen.go new file mode 100644 index 0000000..a287e15 --- /dev/null +++ b/models/crpnpccorporations.gen.go @@ -0,0 +1,44 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCrpNPCCorporation = "crpNPCCorporations" + +// CrpNPCCorporation mapped from table +type CrpNPCCorporation struct { + CorporationID int32 `gorm:"column:corporationID;primaryKey" json:"corporationID"` + Size string `gorm:"column:size" json:"size"` + Extent string `gorm:"column:extent" json:"extent"` + SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"` + InvestorID1 int32 `gorm:"column:investorID1" json:"investorID1"` + InvestorShares1 int32 `gorm:"column:investorShares1" json:"investorShares1"` + InvestorID2 int32 `gorm:"column:investorID2" json:"investorID2"` + InvestorShares2 int32 `gorm:"column:investorShares2" json:"investorShares2"` + InvestorID3 int32 `gorm:"column:investorID3" json:"investorID3"` + InvestorShares3 int32 `gorm:"column:investorShares3" json:"investorShares3"` + InvestorID4 int32 `gorm:"column:investorID4" json:"investorID4"` + InvestorShares4 int32 `gorm:"column:investorShares4" json:"investorShares4"` + FriendID int32 `gorm:"column:friendID" json:"friendID"` + EnemyID int32 `gorm:"column:enemyID" json:"enemyID"` + PublicShares int32 `gorm:"column:publicShares" json:"publicShares"` + InitialPrice int32 `gorm:"column:initialPrice" json:"initialPrice"` + MinSecurity float64 `gorm:"column:minSecurity" json:"minSecurity"` + Scattered bool `gorm:"column:scattered" json:"scattered"` + Fringe int32 `gorm:"column:fringe" json:"fringe"` + Corridor int32 `gorm:"column:corridor" json:"corridor"` + Hub int32 `gorm:"column:hub" json:"hub"` + Border int32 `gorm:"column:border" json:"border"` + FactionID int32 `gorm:"column:factionID" json:"factionID"` + SizeFactor float64 `gorm:"column:sizeFactor" json:"sizeFactor"` + StationCount int32 `gorm:"column:stationCount" json:"stationCount"` + StationSystemCount int32 `gorm:"column:stationSystemCount" json:"stationSystemCount"` + Description string `gorm:"column:description" json:"description"` + IconID int32 `gorm:"column:iconID" json:"iconID"` +} + +// TableName CrpNPCCorporation's table name +func (*CrpNPCCorporation) TableName() string { + return TableNameCrpNPCCorporation +} diff --git a/models/crpnpccorporationtrades.gen.go b/models/crpnpccorporationtrades.gen.go new file mode 100644 index 0000000..41e3106 --- /dev/null +++ b/models/crpnpccorporationtrades.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCrpNPCCorporationTrade = "crpNPCCorporationTrades" + +// CrpNPCCorporationTrade mapped from table +type CrpNPCCorporationTrade struct { + CorporationID int32 `gorm:"column:corporationID;primaryKey" json:"corporationID"` + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` +} + +// TableName CrpNPCCorporationTrade's table name +func (*CrpNPCCorporationTrade) TableName() string { + return TableNameCrpNPCCorporationTrade +} diff --git a/models/crpnpcdivisions.gen.go b/models/crpnpcdivisions.gen.go new file mode 100644 index 0000000..c23cc1a --- /dev/null +++ b/models/crpnpcdivisions.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameCrpNPCDivision = "crpNPCDivisions" + +// CrpNPCDivision mapped from table +type CrpNPCDivision struct { + DivisionID int32 `gorm:"column:divisionID;primaryKey" json:"divisionID"` + DivisionName string `gorm:"column:divisionName" json:"divisionName"` + Description string `gorm:"column:description" json:"description"` + LeaderType string `gorm:"column:leaderType" json:"leaderType"` +} + +// TableName CrpNPCDivision's table name +func (*CrpNPCDivision) TableName() string { + return TableNameCrpNPCDivision +} diff --git a/models/dgmattributecategories.gen.go b/models/dgmattributecategories.gen.go new file mode 100644 index 0000000..fef5f1f --- /dev/null +++ b/models/dgmattributecategories.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameDgmAttributeCategory = "dgmAttributeCategories" + +// DgmAttributeCategory mapped from table +type DgmAttributeCategory struct { + CategoryID int32 `gorm:"column:categoryID;primaryKey" json:"categoryID"` + CategoryName string `gorm:"column:categoryName" json:"categoryName"` + CategoryDescription string `gorm:"column:categoryDescription" json:"categoryDescription"` +} + +// TableName DgmAttributeCategory's table name +func (*DgmAttributeCategory) TableName() string { + return TableNameDgmAttributeCategory +} diff --git a/models/dgmattributetypes.gen.go b/models/dgmattributetypes.gen.go new file mode 100644 index 0000000..ff47b10 --- /dev/null +++ b/models/dgmattributetypes.gen.go @@ -0,0 +1,27 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameDgmAttributeType = "dgmAttributeTypes" + +// DgmAttributeType mapped from table +type DgmAttributeType struct { + AttributeID int32 `gorm:"column:attributeID;primaryKey" json:"attributeID"` + AttributeName string `gorm:"column:attributeName" json:"attributeName"` + Description string `gorm:"column:description" json:"description"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + DefaultValue float64 `gorm:"column:defaultValue" json:"defaultValue"` + Published bool `gorm:"column:published" json:"published"` + DisplayName string `gorm:"column:displayName" json:"displayName"` + UnitID int32 `gorm:"column:unitID" json:"unitID"` + Stackable bool `gorm:"column:stackable" json:"stackable"` + HighIsGood bool `gorm:"column:highIsGood" json:"highIsGood"` + CategoryID int32 `gorm:"column:categoryID" json:"categoryID"` +} + +// TableName DgmAttributeType's table name +func (*DgmAttributeType) TableName() string { + return TableNameDgmAttributeType +} diff --git a/models/dgmeffects.gen.go b/models/dgmeffects.gen.go new file mode 100644 index 0000000..70aa8a8 --- /dev/null +++ b/models/dgmeffects.gen.go @@ -0,0 +1,44 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameDgmEffect = "dgmEffects" + +// DgmEffect mapped from table +type DgmEffect struct { + EffectID int32 `gorm:"column:effectID;primaryKey" json:"effectID"` + EffectName string `gorm:"column:effectName" json:"effectName"` + EffectCategory int32 `gorm:"column:effectCategory" json:"effectCategory"` + PreExpression int32 `gorm:"column:preExpression" json:"preExpression"` + PostExpression int32 `gorm:"column:postExpression" json:"postExpression"` + Description string `gorm:"column:description" json:"description"` + GUID string `gorm:"column:guid" json:"guid"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + IsOffensive bool `gorm:"column:isOffensive" json:"isOffensive"` + IsAssistance bool `gorm:"column:isAssistance" json:"isAssistance"` + DurationAttributeID int32 `gorm:"column:durationAttributeID" json:"durationAttributeID"` + TrackingSpeedAttributeID int32 `gorm:"column:trackingSpeedAttributeID" json:"trackingSpeedAttributeID"` + DischargeAttributeID int32 `gorm:"column:dischargeAttributeID" json:"dischargeAttributeID"` + RangeAttributeID int32 `gorm:"column:rangeAttributeID" json:"rangeAttributeID"` + FalloffAttributeID int32 `gorm:"column:falloffAttributeID" json:"falloffAttributeID"` + DisallowAutoRepeat bool `gorm:"column:disallowAutoRepeat" json:"disallowAutoRepeat"` + Published bool `gorm:"column:published" json:"published"` + DisplayName string `gorm:"column:displayName" json:"displayName"` + IsWarpSafe bool `gorm:"column:isWarpSafe" json:"isWarpSafe"` + RangeChance bool `gorm:"column:rangeChance" json:"rangeChance"` + ElectronicChance bool `gorm:"column:electronicChance" json:"electronicChance"` + PropulsionChance bool `gorm:"column:propulsionChance" json:"propulsionChance"` + Distribution int32 `gorm:"column:distribution" json:"distribution"` + SfxName string `gorm:"column:sfxName" json:"sfxName"` + NpcUsageChanceAttributeID int32 `gorm:"column:npcUsageChanceAttributeID" json:"npcUsageChanceAttributeID"` + NpcActivationChanceAttributeID int32 `gorm:"column:npcActivationChanceAttributeID" json:"npcActivationChanceAttributeID"` + FittingUsageChanceAttributeID int32 `gorm:"column:fittingUsageChanceAttributeID" json:"fittingUsageChanceAttributeID"` + ModifierInfo string `gorm:"column:modifierInfo" json:"modifierInfo"` +} + +// TableName DgmEffect's table name +func (*DgmEffect) TableName() string { + return TableNameDgmEffect +} diff --git a/models/dgmexpressions.gen.go b/models/dgmexpressions.gen.go new file mode 100644 index 0000000..ee13235 --- /dev/null +++ b/models/dgmexpressions.gen.go @@ -0,0 +1,26 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameDgmExpression = "dgmExpressions" + +// DgmExpression mapped from table +type DgmExpression struct { + ExpressionID int32 `gorm:"column:expressionID;primaryKey" json:"expressionID"` + OperandID int32 `gorm:"column:operandID" json:"operandID"` + Arg1 int32 `gorm:"column:arg1" json:"arg1"` + Arg2 int32 `gorm:"column:arg2" json:"arg2"` + ExpressionValue string `gorm:"column:expressionValue" json:"expressionValue"` + Description string `gorm:"column:description" json:"description"` + ExpressionName string `gorm:"column:expressionName" json:"expressionName"` + ExpressionTypeID int32 `gorm:"column:expressionTypeID" json:"expressionTypeID"` + ExpressionGroupID int32 `gorm:"column:expressionGroupID" json:"expressionGroupID"` + ExpressionAttributeID int32 `gorm:"column:expressionAttributeID" json:"expressionAttributeID"` +} + +// TableName DgmExpression's table name +func (*DgmExpression) TableName() string { + return TableNameDgmExpression +} diff --git a/models/dgmtypeattributes.gen.go b/models/dgmtypeattributes.gen.go new file mode 100644 index 0000000..19d4a5f --- /dev/null +++ b/models/dgmtypeattributes.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameDgmTypeAttribute = "dgmTypeAttributes" + +// DgmTypeAttribute mapped from table +type DgmTypeAttribute struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + AttributeID int32 `gorm:"column:attributeID;primaryKey" json:"attributeID"` + ValueInt int32 `gorm:"column:valueInt" json:"valueInt"` + ValueFloat float64 `gorm:"column:valueFloat" json:"valueFloat"` +} + +// TableName DgmTypeAttribute's table name +func (*DgmTypeAttribute) TableName() string { + return TableNameDgmTypeAttribute +} diff --git a/models/dgmtypeeffects.gen.go b/models/dgmtypeeffects.gen.go new file mode 100644 index 0000000..aa38a4c --- /dev/null +++ b/models/dgmtypeeffects.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameDgmTypeEffect = "dgmTypeEffects" + +// DgmTypeEffect mapped from table +type DgmTypeEffect struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + EffectID int32 `gorm:"column:effectID;primaryKey" json:"effectID"` + IsDefault bool `gorm:"column:isDefault" json:"isDefault"` +} + +// TableName DgmTypeEffect's table name +func (*DgmTypeEffect) TableName() string { + return TableNameDgmTypeEffect +} diff --git a/models/evegraphics.gen.go b/models/evegraphics.gen.go new file mode 100644 index 0000000..3dc36b6 --- /dev/null +++ b/models/evegraphics.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameEveGraphic = "eveGraphics" + +// EveGraphic mapped from table +type EveGraphic struct { + GraphicID int32 `gorm:"column:graphicID;primaryKey" json:"graphicID"` + SofFactionName string `gorm:"column:sofFactionName" json:"sofFactionName"` + GraphicFile string `gorm:"column:graphicFile" json:"graphicFile"` + SofHullName string `gorm:"column:sofHullName" json:"sofHullName"` + SofRaceName string `gorm:"column:sofRaceName" json:"sofRaceName"` + Description string `gorm:"column:description" json:"description"` +} + +// TableName EveGraphic's table name +func (*EveGraphic) TableName() string { + return TableNameEveGraphic +} diff --git a/models/eveicons.gen.go b/models/eveicons.gen.go new file mode 100644 index 0000000..806920c --- /dev/null +++ b/models/eveicons.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameEveIcon = "eveIcons" + +// EveIcon mapped from table +type EveIcon struct { + IconID int32 `gorm:"column:iconID;primaryKey" json:"iconID"` + IconFile string `gorm:"column:iconFile" json:"iconFile"` + Description string `gorm:"column:description" json:"description"` +} + +// TableName EveIcon's table name +func (*EveIcon) TableName() string { + return TableNameEveIcon +} diff --git a/models/eveunits.gen.go b/models/eveunits.gen.go new file mode 100644 index 0000000..bfa257c --- /dev/null +++ b/models/eveunits.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameEveUnit = "eveUnits" + +// EveUnit mapped from table +type EveUnit struct { + UnitID int32 `gorm:"column:unitID;primaryKey" json:"unitID"` + UnitName string `gorm:"column:unitName" json:"unitName"` + DisplayName string `gorm:"column:displayName" json:"displayName"` + Description string `gorm:"column:description" json:"description"` +} + +// TableName EveUnit's table name +func (*EveUnit) TableName() string { + return TableNameEveUnit +} diff --git a/models/industryactivity.gen.go b/models/industryactivity.gen.go new file mode 100644 index 0000000..049b2ce --- /dev/null +++ b/models/industryactivity.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryActivity = "industryActivity" + +// IndustryActivity mapped from table +type IndustryActivity struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + ActivityID int32 `gorm:"column:activityID;primaryKey" json:"activityID"` + Time int32 `gorm:"column:time" json:"time"` +} + +// TableName IndustryActivity's table name +func (*IndustryActivity) TableName() string { + return TableNameIndustryActivity +} diff --git a/models/industryactivitymaterials.gen.go b/models/industryactivitymaterials.gen.go new file mode 100644 index 0000000..f520fe9 --- /dev/null +++ b/models/industryactivitymaterials.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryActivityMaterial = "industryActivityMaterials" + +// IndustryActivityMaterial mapped from table +type IndustryActivityMaterial struct { + TypeID int32 `gorm:"column:typeID" json:"typeID"` + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + MaterialTypeID int32 `gorm:"column:materialTypeID" json:"materialTypeID"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` +} + +// TableName IndustryActivityMaterial's table name +func (*IndustryActivityMaterial) TableName() string { + return TableNameIndustryActivityMaterial +} diff --git a/models/industryactivityprobabilities.gen.go b/models/industryactivityprobabilities.gen.go new file mode 100644 index 0000000..b7ba4a4 --- /dev/null +++ b/models/industryactivityprobabilities.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryActivityProbability = "industryActivityProbabilities" + +// IndustryActivityProbability mapped from table +type IndustryActivityProbability struct { + TypeID int32 `gorm:"column:typeID" json:"typeID"` + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + ProductTypeID int32 `gorm:"column:productTypeID" json:"productTypeID"` + Probability float64 `gorm:"column:probability" json:"probability"` +} + +// TableName IndustryActivityProbability's table name +func (*IndustryActivityProbability) TableName() string { + return TableNameIndustryActivityProbability +} diff --git a/models/industryactivityproducts.gen.go b/models/industryactivityproducts.gen.go new file mode 100644 index 0000000..69adb9f --- /dev/null +++ b/models/industryactivityproducts.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryActivityProduct = "industryActivityProducts" + +// IndustryActivityProduct mapped from table +type IndustryActivityProduct struct { + TypeID int32 `gorm:"column:typeID" json:"typeID"` + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + ProductTypeID int32 `gorm:"column:productTypeID" json:"productTypeID"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` +} + +// TableName IndustryActivityProduct's table name +func (*IndustryActivityProduct) TableName() string { + return TableNameIndustryActivityProduct +} diff --git a/models/industryactivityraces.gen.go b/models/industryactivityraces.gen.go new file mode 100644 index 0000000..78408d8 --- /dev/null +++ b/models/industryactivityraces.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryActivityRace = "industryActivityRaces" + +// IndustryActivityRace mapped from table +type IndustryActivityRace struct { + TypeID int32 `gorm:"column:typeID" json:"typeID"` + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + ProductTypeID int32 `gorm:"column:productTypeID" json:"productTypeID"` + RaceID int32 `gorm:"column:raceID" json:"raceID"` +} + +// TableName IndustryActivityRace's table name +func (*IndustryActivityRace) TableName() string { + return TableNameIndustryActivityRace +} diff --git a/models/industryactivityskills.gen.go b/models/industryactivityskills.gen.go new file mode 100644 index 0000000..e3eb356 --- /dev/null +++ b/models/industryactivityskills.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryActivitySkill = "industryActivitySkills" + +// IndustryActivitySkill mapped from table +type IndustryActivitySkill struct { + TypeID int32 `gorm:"column:typeID" json:"typeID"` + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + SkillID int32 `gorm:"column:skillID" json:"skillID"` + Level int32 `gorm:"column:level" json:"level"` +} + +// TableName IndustryActivitySkill's table name +func (*IndustryActivitySkill) TableName() string { + return TableNameIndustryActivitySkill +} diff --git a/models/industryblueprints.gen.go b/models/industryblueprints.gen.go new file mode 100644 index 0000000..c25aad3 --- /dev/null +++ b/models/industryblueprints.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameIndustryBlueprint = "industryBlueprints" + +// IndustryBlueprint mapped from table +type IndustryBlueprint struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + MaxProductionLimit int32 `gorm:"column:maxProductionLimit" json:"maxProductionLimit"` +} + +// TableName IndustryBlueprint's table name +func (*IndustryBlueprint) TableName() string { + return TableNameIndustryBlueprint +} diff --git a/models/invcategories.gen.go b/models/invcategories.gen.go new file mode 100644 index 0000000..1ab6901 --- /dev/null +++ b/models/invcategories.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvCategory = "invCategories" + +// InvCategory mapped from table +type InvCategory struct { + CategoryID int32 `gorm:"column:categoryID;primaryKey" json:"categoryID"` + CategoryName string `gorm:"column:categoryName" json:"categoryName"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + Published bool `gorm:"column:published" json:"published"` +} + +// TableName InvCategory's table name +func (*InvCategory) TableName() string { + return TableNameInvCategory +} diff --git a/models/invcontrabandtypes.gen.go b/models/invcontrabandtypes.gen.go new file mode 100644 index 0000000..9bca3cb --- /dev/null +++ b/models/invcontrabandtypes.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvContrabandType = "invContrabandTypes" + +// InvContrabandType mapped from table +type InvContrabandType struct { + FactionID int32 `gorm:"column:factionID;primaryKey" json:"factionID"` + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + StandingLoss float64 `gorm:"column:standingLoss" json:"standingLoss"` + ConfiscateMinSec float64 `gorm:"column:confiscateMinSec" json:"confiscateMinSec"` + FineByValue float64 `gorm:"column:fineByValue" json:"fineByValue"` + AttackMinSec float64 `gorm:"column:attackMinSec" json:"attackMinSec"` +} + +// TableName InvContrabandType's table name +func (*InvContrabandType) TableName() string { + return TableNameInvContrabandType +} diff --git a/models/invcontroltowerresourcepurposes.gen.go b/models/invcontroltowerresourcepurposes.gen.go new file mode 100644 index 0000000..3cfedef --- /dev/null +++ b/models/invcontroltowerresourcepurposes.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvControlTowerResourcePurpose = "invControlTowerResourcePurposes" + +// InvControlTowerResourcePurpose mapped from table +type InvControlTowerResourcePurpose struct { + Purpose int32 `gorm:"column:purpose;primaryKey" json:"purpose"` + PurposeText string `gorm:"column:purposeText" json:"purposeText"` +} + +// TableName InvControlTowerResourcePurpose's table name +func (*InvControlTowerResourcePurpose) TableName() string { + return TableNameInvControlTowerResourcePurpose +} diff --git a/models/invcontroltowerresources.gen.go b/models/invcontroltowerresources.gen.go new file mode 100644 index 0000000..ee38f8d --- /dev/null +++ b/models/invcontroltowerresources.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvControlTowerResource = "invControlTowerResources" + +// InvControlTowerResource mapped from table +type InvControlTowerResource struct { + ControlTowerTypeID int32 `gorm:"column:controlTowerTypeID;primaryKey" json:"controlTowerTypeID"` + ResourceTypeID int32 `gorm:"column:resourceTypeID;primaryKey" json:"resourceTypeID"` + Purpose int32 `gorm:"column:purpose" json:"purpose"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` + MinSecurityLevel float64 `gorm:"column:minSecurityLevel" json:"minSecurityLevel"` + FactionID int32 `gorm:"column:factionID" json:"factionID"` +} + +// TableName InvControlTowerResource's table name +func (*InvControlTowerResource) TableName() string { + return TableNameInvControlTowerResource +} diff --git a/models/invflags.gen.go b/models/invflags.gen.go new file mode 100644 index 0000000..060ba33 --- /dev/null +++ b/models/invflags.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvFlag = "invFlags" + +// InvFlag mapped from table +type InvFlag struct { + FlagID int32 `gorm:"column:flagID;primaryKey" json:"flagID"` + FlagName string `gorm:"column:flagName" json:"flagName"` + FlagText string `gorm:"column:flagText" json:"flagText"` + OrderID int32 `gorm:"column:orderID" json:"orderID"` +} + +// TableName InvFlag's table name +func (*InvFlag) TableName() string { + return TableNameInvFlag +} diff --git a/models/invgroups.gen.go b/models/invgroups.gen.go new file mode 100644 index 0000000..f9dfdc4 --- /dev/null +++ b/models/invgroups.gen.go @@ -0,0 +1,25 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvGroup = "invGroups" + +// InvGroup mapped from table +type InvGroup struct { + GroupID int32 `gorm:"column:groupID;primaryKey" json:"groupID"` + CategoryID int32 `gorm:"column:categoryID" json:"categoryID"` + GroupName string `gorm:"column:groupName" json:"groupName"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + UseBasePrice bool `gorm:"column:useBasePrice" json:"useBasePrice"` + Anchored bool `gorm:"column:anchored" json:"anchored"` + Anchorable bool `gorm:"column:anchorable" json:"anchorable"` + FittableNonSingleton bool `gorm:"column:fittableNonSingleton" json:"fittableNonSingleton"` + Published bool `gorm:"column:published" json:"published"` +} + +// TableName InvGroup's table name +func (*InvGroup) TableName() string { + return TableNameInvGroup +} diff --git a/models/invitems.gen.go b/models/invitems.gen.go new file mode 100644 index 0000000..1ccfe6f --- /dev/null +++ b/models/invitems.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvItem = "invItems" + +// InvItem mapped from table +type InvItem struct { + ItemID int32 `gorm:"column:itemID;primaryKey" json:"itemID"` + TypeID int32 `gorm:"column:typeID;not null" json:"typeID"` + OwnerID int32 `gorm:"column:ownerID;not null" json:"ownerID"` + LocationID int32 `gorm:"column:locationID;not null" json:"locationID"` + FlagID int32 `gorm:"column:flagID;not null" json:"flagID"` + Quantity int32 `gorm:"column:quantity;not null" json:"quantity"` +} + +// TableName InvItem's table name +func (*InvItem) TableName() string { + return TableNameInvItem +} diff --git a/models/invmarketgroups.gen.go b/models/invmarketgroups.gen.go new file mode 100644 index 0000000..2ab8ab7 --- /dev/null +++ b/models/invmarketgroups.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvMarketGroup = "invMarketGroups" + +// InvMarketGroup mapped from table +type InvMarketGroup struct { + MarketGroupID int32 `gorm:"column:marketGroupID;primaryKey" json:"marketGroupID"` + ParentGroupID int32 `gorm:"column:parentGroupID" json:"parentGroupID"` + MarketGroupName string `gorm:"column:marketGroupName" json:"marketGroupName"` + Description string `gorm:"column:description" json:"description"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + HasTypes bool `gorm:"column:hasTypes" json:"hasTypes"` +} + +// TableName InvMarketGroup's table name +func (*InvMarketGroup) TableName() string { + return TableNameInvMarketGroup +} diff --git a/models/invmetagroups.gen.go b/models/invmetagroups.gen.go new file mode 100644 index 0000000..a527f85 --- /dev/null +++ b/models/invmetagroups.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvMetaGroup = "invMetaGroups" + +// InvMetaGroup mapped from table +type InvMetaGroup struct { + MetaGroupID int32 `gorm:"column:metaGroupID;primaryKey" json:"metaGroupID"` + MetaGroupName string `gorm:"column:metaGroupName" json:"metaGroupName"` + Description string `gorm:"column:description" json:"description"` + IconID int32 `gorm:"column:iconID" json:"iconID"` +} + +// TableName InvMetaGroup's table name +func (*InvMetaGroup) TableName() string { + return TableNameInvMetaGroup +} diff --git a/models/invmetatypes.gen.go b/models/invmetatypes.gen.go new file mode 100644 index 0000000..3471bc5 --- /dev/null +++ b/models/invmetatypes.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvMetaType = "invMetaTypes" + +// InvMetaType mapped from table +type InvMetaType struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + ParentTypeID int32 `gorm:"column:parentTypeID" json:"parentTypeID"` + MetaGroupID int32 `gorm:"column:metaGroupID" json:"metaGroupID"` +} + +// TableName InvMetaType's table name +func (*InvMetaType) TableName() string { + return TableNameInvMetaType +} diff --git a/models/invnames.gen.go b/models/invnames.gen.go new file mode 100644 index 0000000..d6b8eb3 --- /dev/null +++ b/models/invnames.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvName = "invNames" + +// InvName mapped from table +type InvName struct { + ItemID int32 `gorm:"column:itemID;primaryKey" json:"itemID"` + ItemName string `gorm:"column:itemName;not null" json:"itemName"` +} + +// TableName InvName's table name +func (*InvName) TableName() string { + return TableNameInvName +} diff --git a/models/invpositions.gen.go b/models/invpositions.gen.go new file mode 100644 index 0000000..2230c9c --- /dev/null +++ b/models/invpositions.gen.go @@ -0,0 +1,23 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvPosition = "invPositions" + +// InvPosition mapped from table +type InvPosition struct { + ItemID int32 `gorm:"column:itemID;primaryKey" json:"itemID"` + X float64 `gorm:"column:x;not null" json:"x"` + Y float64 `gorm:"column:y;not null" json:"y"` + Z float64 `gorm:"column:z;not null" json:"z"` + Yaw float32 `gorm:"column:yaw" json:"yaw"` + Pitch float32 `gorm:"column:pitch" json:"pitch"` + Roll float32 `gorm:"column:roll" json:"roll"` +} + +// TableName InvPosition's table name +func (*InvPosition) TableName() string { + return TableNameInvPosition +} diff --git a/models/invtraits.gen.go b/models/invtraits.gen.go new file mode 100644 index 0000000..5cd5dc6 --- /dev/null +++ b/models/invtraits.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvTrait = "invTraits" + +// InvTrait mapped from table +type InvTrait struct { + TraitID int32 `gorm:"column:traitID;primaryKey;default:nextval('"invTraits_traitID_seq"" json:"traitID"` + TypeID int32 `gorm:"column:typeID" json:"typeID"` + SkillID int32 `gorm:"column:skillID" json:"skillID"` + Bonus float64 `gorm:"column:bonus" json:"bonus"` + BonusText string `gorm:"column:bonusText" json:"bonusText"` + UnitID int32 `gorm:"column:unitID" json:"unitID"` +} + +// TableName InvTrait's table name +func (*InvTrait) TableName() string { + return TableNameInvTrait +} diff --git a/models/invtypematerials.gen.go b/models/invtypematerials.gen.go new file mode 100644 index 0000000..6671793 --- /dev/null +++ b/models/invtypematerials.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvTypeMaterial = "invTypeMaterials" + +// InvTypeMaterial mapped from table +type InvTypeMaterial struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + MaterialTypeID int32 `gorm:"column:materialTypeID;primaryKey" json:"materialTypeID"` + Quantity int32 `gorm:"column:quantity;not null" json:"quantity"` +} + +// TableName InvTypeMaterial's table name +func (*InvTypeMaterial) TableName() string { + return TableNameInvTypeMaterial +} diff --git a/models/invtypereactions.gen.go b/models/invtypereactions.gen.go new file mode 100644 index 0000000..f6ece9e --- /dev/null +++ b/models/invtypereactions.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvTypeReaction = "invTypeReactions" + +// InvTypeReaction mapped from table +type InvTypeReaction struct { + ReactionTypeID int32 `gorm:"column:reactionTypeID;primaryKey" json:"reactionTypeID"` + Input bool `gorm:"column:input;primaryKey" json:"input"` + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` +} + +// TableName InvTypeReaction's table name +func (*InvTypeReaction) TableName() string { + return TableNameInvTypeReaction +} diff --git a/models/invtypes.gen.go b/models/invtypes.gen.go new file mode 100644 index 0000000..1036075 --- /dev/null +++ b/models/invtypes.gen.go @@ -0,0 +1,31 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvType = "invTypes" + +// InvType mapped from table +type InvType struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + GroupID int32 `gorm:"column:groupID" json:"groupID"` + TypeName string `gorm:"column:typeName" json:"typeName"` + Description string `gorm:"column:description" json:"description"` + Mass float64 `gorm:"column:mass" json:"mass"` + Volume float64 `gorm:"column:volume" json:"volume"` + Capacity float64 `gorm:"column:capacity" json:"capacity"` + PortionSize int32 `gorm:"column:portionSize" json:"portionSize"` + RaceID int32 `gorm:"column:raceID" json:"raceID"` + BasePrice float64 `gorm:"column:basePrice" json:"basePrice"` + Published bool `gorm:"column:published" json:"published"` + MarketGroupID int32 `gorm:"column:marketGroupID" json:"marketGroupID"` + IconID int32 `gorm:"column:iconID" json:"iconID"` + SoundID int32 `gorm:"column:soundID" json:"soundID"` + GraphicID int32 `gorm:"column:graphicID" json:"graphicID"` +} + +// TableName InvType's table name +func (*InvType) TableName() string { + return TableNameInvType +} diff --git a/models/invuniquenames.gen.go b/models/invuniquenames.gen.go new file mode 100644 index 0000000..ce95c34 --- /dev/null +++ b/models/invuniquenames.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvUniqueName = "invUniqueNames" + +// InvUniqueName mapped from table +type InvUniqueName struct { + ItemID int32 `gorm:"column:itemID;primaryKey" json:"itemID"` + ItemName string `gorm:"column:itemName;not null" json:"itemName"` + GroupID int32 `gorm:"column:groupID" json:"groupID"` +} + +// TableName InvUniqueName's table name +func (*InvUniqueName) TableName() string { + return TableNameInvUniqueName +} diff --git a/models/invvolumes.gen.go b/models/invvolumes.gen.go new file mode 100644 index 0000000..71d610f --- /dev/null +++ b/models/invvolumes.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameInvVolume = "invVolumes" + +// InvVolume mapped from table +type InvVolume struct { + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + Volume int32 `gorm:"column:volume" json:"volume"` +} + +// TableName InvVolume's table name +func (*InvVolume) TableName() string { + return TableNameInvVolume +} diff --git a/models/mapcelestialgraphics.gen.go b/models/mapcelestialgraphics.gen.go new file mode 100644 index 0000000..127cd0f --- /dev/null +++ b/models/mapcelestialgraphics.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapCelestialGraphic = "mapCelestialGraphics" + +// MapCelestialGraphic mapped from table +type MapCelestialGraphic struct { + CelestialID int32 `gorm:"column:celestialID;primaryKey" json:"celestialID"` + HeightMap1 int32 `gorm:"column:heightMap1" json:"heightMap1"` + HeightMap2 int32 `gorm:"column:heightMap2" json:"heightMap2"` + ShaderPreset int32 `gorm:"column:shaderPreset" json:"shaderPreset"` + Population bool `gorm:"column:population" json:"population"` +} + +// TableName MapCelestialGraphic's table name +func (*MapCelestialGraphic) TableName() string { + return TableNameMapCelestialGraphic +} diff --git a/models/mapcelestialstatistics.gen.go b/models/mapcelestialstatistics.gen.go new file mode 100644 index 0000000..8639ec8 --- /dev/null +++ b/models/mapcelestialstatistics.gen.go @@ -0,0 +1,36 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapCelestialStatistic = "mapCelestialStatistics" + +// MapCelestialStatistic mapped from table +type MapCelestialStatistic struct { + CelestialID int32 `gorm:"column:celestialID;primaryKey" json:"celestialID"` + Temperature float64 `gorm:"column:temperature" json:"temperature"` + SpectralClass string `gorm:"column:spectralClass" json:"spectralClass"` + Luminosity float64 `gorm:"column:luminosity" json:"luminosity"` + Age float64 `gorm:"column:age" json:"age"` + Life float64 `gorm:"column:life" json:"life"` + OrbitRadius float64 `gorm:"column:orbitRadius" json:"orbitRadius"` + Eccentricity float64 `gorm:"column:eccentricity" json:"eccentricity"` + MassDust float64 `gorm:"column:massDust" json:"massDust"` + MassGas float64 `gorm:"column:massGas" json:"massGas"` + Fragmented bool `gorm:"column:fragmented" json:"fragmented"` + Density float64 `gorm:"column:density" json:"density"` + SurfaceGravity float64 `gorm:"column:surfaceGravity" json:"surfaceGravity"` + EscapeVelocity float64 `gorm:"column:escapeVelocity" json:"escapeVelocity"` + OrbitPeriod float64 `gorm:"column:orbitPeriod" json:"orbitPeriod"` + RotationRate float64 `gorm:"column:rotationRate" json:"rotationRate"` + Locked bool `gorm:"column:locked" json:"locked"` + Pressure float64 `gorm:"column:pressure" json:"pressure"` + Radius float64 `gorm:"column:radius" json:"radius"` + Mass int32 `gorm:"column:mass" json:"mass"` +} + +// TableName MapCelestialStatistic's table name +func (*MapCelestialStatistic) TableName() string { + return TableNameMapCelestialStatistic +} diff --git a/models/mapconstellationjumps.gen.go b/models/mapconstellationjumps.gen.go new file mode 100644 index 0000000..0865d0f --- /dev/null +++ b/models/mapconstellationjumps.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapConstellationJump = "mapConstellationJumps" + +// MapConstellationJump mapped from table +type MapConstellationJump struct { + FromRegionID int32 `gorm:"column:fromRegionID" json:"fromRegionID"` + FromConstellationID int32 `gorm:"column:fromConstellationID;primaryKey" json:"fromConstellationID"` + ToConstellationID int32 `gorm:"column:toConstellationID;primaryKey" json:"toConstellationID"` + ToRegionID int32 `gorm:"column:toRegionID" json:"toRegionID"` +} + +// TableName MapConstellationJump's table name +func (*MapConstellationJump) TableName() string { + return TableNameMapConstellationJump +} diff --git a/models/mapconstellations.gen.go b/models/mapconstellations.gen.go new file mode 100644 index 0000000..f610e8a --- /dev/null +++ b/models/mapconstellations.gen.go @@ -0,0 +1,30 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapConstellation = "mapConstellations" + +// MapConstellation mapped from table +type MapConstellation struct { + RegionID int32 `gorm:"column:regionID" json:"regionID"` + ConstellationID int32 `gorm:"column:constellationID;primaryKey" json:"constellationID"` + ConstellationName string `gorm:"column:constellationName" json:"constellationName"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + XMin float64 `gorm:"column:xMin" json:"xMin"` + XMax float64 `gorm:"column:xMax" json:"xMax"` + YMin float64 `gorm:"column:yMin" json:"yMin"` + YMax float64 `gorm:"column:yMax" json:"yMax"` + ZMin float64 `gorm:"column:zMin" json:"zMin"` + ZMax float64 `gorm:"column:zMax" json:"zMax"` + FactionID int32 `gorm:"column:factionID" json:"factionID"` + Radius float64 `gorm:"column:radius" json:"radius"` +} + +// TableName MapConstellation's table name +func (*MapConstellation) TableName() string { + return TableNameMapConstellation +} diff --git a/models/mapdenormalize.gen.go b/models/mapdenormalize.gen.go new file mode 100644 index 0000000..9b88fdf --- /dev/null +++ b/models/mapdenormalize.gen.go @@ -0,0 +1,31 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapDenormalize = "mapDenormalize" + +// MapDenormalize mapped from table +type MapDenormalize struct { + ItemID int32 `gorm:"column:itemID;primaryKey" json:"itemID"` + TypeID int32 `gorm:"column:typeID" json:"typeID"` + GroupID int32 `gorm:"column:groupID" json:"groupID"` + SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"` + ConstellationID int32 `gorm:"column:constellationID" json:"constellationID"` + RegionID int32 `gorm:"column:regionID" json:"regionID"` + OrbitID int32 `gorm:"column:orbitID" json:"orbitID"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + Radius float64 `gorm:"column:radius" json:"radius"` + ItemName string `gorm:"column:itemName" json:"itemName"` + Security float64 `gorm:"column:security" json:"security"` + CelestialIndex int32 `gorm:"column:celestialIndex" json:"celestialIndex"` + OrbitIndex int32 `gorm:"column:orbitIndex" json:"orbitIndex"` +} + +// TableName MapDenormalize's table name +func (*MapDenormalize) TableName() string { + return TableNameMapDenormalize +} diff --git a/models/mapjumps.gen.go b/models/mapjumps.gen.go new file mode 100644 index 0000000..b9c1f97 --- /dev/null +++ b/models/mapjumps.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapJump = "mapJumps" + +// MapJump mapped from table +type MapJump struct { + StargateID int32 `gorm:"column:stargateID;primaryKey" json:"stargateID"` + DestinationID int32 `gorm:"column:destinationID" json:"destinationID"` +} + +// TableName MapJump's table name +func (*MapJump) TableName() string { + return TableNameMapJump +} diff --git a/models/maplandmarks.gen.go b/models/maplandmarks.gen.go new file mode 100644 index 0000000..9c689fa --- /dev/null +++ b/models/maplandmarks.gen.go @@ -0,0 +1,24 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapLandmark = "mapLandmarks" + +// MapLandmark mapped from table +type MapLandmark struct { + LandmarkID int32 `gorm:"column:landmarkID;primaryKey" json:"landmarkID"` + LandmarkName string `gorm:"column:landmarkName" json:"landmarkName"` + Description string `gorm:"column:description" json:"description"` + LocationID int32 `gorm:"column:locationID" json:"locationID"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + IconID int32 `gorm:"column:iconID" json:"iconID"` +} + +// TableName MapLandmark's table name +func (*MapLandmark) TableName() string { + return TableNameMapLandmark +} diff --git a/models/maplocationscenes.gen.go b/models/maplocationscenes.gen.go new file mode 100644 index 0000000..92340e7 --- /dev/null +++ b/models/maplocationscenes.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapLocationScene = "mapLocationScenes" + +// MapLocationScene mapped from table +type MapLocationScene struct { + LocationID int32 `gorm:"column:locationID;primaryKey" json:"locationID"` + GraphicID int32 `gorm:"column:graphicID" json:"graphicID"` +} + +// TableName MapLocationScene's table name +func (*MapLocationScene) TableName() string { + return TableNameMapLocationScene +} diff --git a/models/maplocationwormholeclasses.gen.go b/models/maplocationwormholeclasses.gen.go new file mode 100644 index 0000000..d2b7742 --- /dev/null +++ b/models/maplocationwormholeclasses.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapLocationWormholeClass = "mapLocationWormholeClasses" + +// MapLocationWormholeClass mapped from table +type MapLocationWormholeClass struct { + LocationID int32 `gorm:"column:locationID;primaryKey" json:"locationID"` + WormholeClassID int32 `gorm:"column:wormholeClassID" json:"wormholeClassID"` +} + +// TableName MapLocationWormholeClass's table name +func (*MapLocationWormholeClass) TableName() string { + return TableNameMapLocationWormholeClass +} diff --git a/models/mapregionjumps.gen.go b/models/mapregionjumps.gen.go new file mode 100644 index 0000000..e6f381b --- /dev/null +++ b/models/mapregionjumps.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapRegionJump = "mapRegionJumps" + +// MapRegionJump mapped from table +type MapRegionJump struct { + FromRegionID int32 `gorm:"column:fromRegionID;primaryKey" json:"fromRegionID"` + ToRegionID int32 `gorm:"column:toRegionID;primaryKey" json:"toRegionID"` +} + +// TableName MapRegionJump's table name +func (*MapRegionJump) TableName() string { + return TableNameMapRegionJump +} diff --git a/models/mapregions.gen.go b/models/mapregions.gen.go new file mode 100644 index 0000000..c32623f --- /dev/null +++ b/models/mapregions.gen.go @@ -0,0 +1,30 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapRegion = "mapRegions" + +// MapRegion mapped from table +type MapRegion struct { + RegionID int32 `gorm:"column:regionID;primaryKey" json:"regionID"` + RegionName string `gorm:"column:regionName" json:"regionName"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + XMin float64 `gorm:"column:xMin" json:"xMin"` + XMax float64 `gorm:"column:xMax" json:"xMax"` + YMin float64 `gorm:"column:yMin" json:"yMin"` + YMax float64 `gorm:"column:yMax" json:"yMax"` + ZMin float64 `gorm:"column:zMin" json:"zMin"` + ZMax float64 `gorm:"column:zMax" json:"zMax"` + FactionID int32 `gorm:"column:factionID" json:"factionID"` + Nebula int32 `gorm:"column:nebula" json:"nebula"` + Radius float64 `gorm:"column:radius" json:"radius"` +} + +// TableName MapRegion's table name +func (*MapRegion) TableName() string { + return TableNameMapRegion +} diff --git a/models/mapsolarsystemjumps.gen.go b/models/mapsolarsystemjumps.gen.go new file mode 100644 index 0000000..d7e4d31 --- /dev/null +++ b/models/mapsolarsystemjumps.gen.go @@ -0,0 +1,22 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapSolarSystemJump = "mapSolarSystemJumps" + +// MapSolarSystemJump mapped from table +type MapSolarSystemJump struct { + FromRegionID int32 `gorm:"column:fromRegionID" json:"fromRegionID"` + FromConstellationID int32 `gorm:"column:fromConstellationID" json:"fromConstellationID"` + FromSolarSystemID int32 `gorm:"column:fromSolarSystemID;primaryKey" json:"fromSolarSystemID"` + ToSolarSystemID int32 `gorm:"column:toSolarSystemID;primaryKey" json:"toSolarSystemID"` + ToConstellationID int32 `gorm:"column:toConstellationID" json:"toConstellationID"` + ToRegionID int32 `gorm:"column:toRegionID" json:"toRegionID"` +} + +// TableName MapSolarSystemJump's table name +func (*MapSolarSystemJump) TableName() string { + return TableNameMapSolarSystemJump +} diff --git a/models/mapsolarsystems.gen.go b/models/mapsolarsystems.gen.go new file mode 100644 index 0000000..9c6beb3 --- /dev/null +++ b/models/mapsolarsystems.gen.go @@ -0,0 +1,42 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapSolarSystem = "mapSolarSystems" + +// MapSolarSystem mapped from table +type MapSolarSystem struct { + RegionID int32 `gorm:"column:regionID" json:"regionID"` + ConstellationID int32 `gorm:"column:constellationID" json:"constellationID"` + SolarSystemID int32 `gorm:"column:solarSystemID;primaryKey" json:"solarSystemID"` + SolarSystemName string `gorm:"column:solarSystemName" json:"solarSystemName"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + XMin float64 `gorm:"column:xMin" json:"xMin"` + XMax float64 `gorm:"column:xMax" json:"xMax"` + YMin float64 `gorm:"column:yMin" json:"yMin"` + YMax float64 `gorm:"column:yMax" json:"yMax"` + ZMin float64 `gorm:"column:zMin" json:"zMin"` + ZMax float64 `gorm:"column:zMax" json:"zMax"` + Luminosity float64 `gorm:"column:luminosity" json:"luminosity"` + Border bool `gorm:"column:border" json:"border"` + Fringe bool `gorm:"column:fringe" json:"fringe"` + Corridor bool `gorm:"column:corridor" json:"corridor"` + Hub bool `gorm:"column:hub" json:"hub"` + International bool `gorm:"column:international" json:"international"` + Regional bool `gorm:"column:regional" json:"regional"` + Constellation bool `gorm:"column:constellation" json:"constellation"` + Security float64 `gorm:"column:security" json:"security"` + FactionID int32 `gorm:"column:factionID" json:"factionID"` + Radius float64 `gorm:"column:radius" json:"radius"` + SunTypeID int32 `gorm:"column:sunTypeID" json:"sunTypeID"` + SecurityClass string `gorm:"column:securityClass" json:"securityClass"` +} + +// TableName MapSolarSystem's table name +func (*MapSolarSystem) TableName() string { + return TableNameMapSolarSystem +} diff --git a/models/mapuniverse.gen.go b/models/mapuniverse.gen.go new file mode 100644 index 0000000..dae4f4c --- /dev/null +++ b/models/mapuniverse.gen.go @@ -0,0 +1,28 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameMapUniverse = "mapUniverse" + +// MapUniverse mapped from table +type MapUniverse struct { + UniverseID int32 `gorm:"column:universeID;primaryKey" json:"universeID"` + UniverseName string `gorm:"column:universeName" json:"universeName"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + XMin float64 `gorm:"column:xMin" json:"xMin"` + XMax float64 `gorm:"column:xMax" json:"xMax"` + YMin float64 `gorm:"column:yMin" json:"yMin"` + YMax float64 `gorm:"column:yMax" json:"yMax"` + ZMin float64 `gorm:"column:zMin" json:"zMin"` + ZMax float64 `gorm:"column:zMax" json:"zMax"` + Radius float64 `gorm:"column:radius" json:"radius"` +} + +// TableName MapUniverse's table name +func (*MapUniverse) TableName() string { + return TableNameMapUniverse +} diff --git a/models/planetschematics.gen.go b/models/planetschematics.gen.go new file mode 100644 index 0000000..410e352 --- /dev/null +++ b/models/planetschematics.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNamePlanetSchematic = "planetSchematics" + +// PlanetSchematic mapped from table +type PlanetSchematic struct { + SchematicID int32 `gorm:"column:schematicID;primaryKey" json:"schematicID"` + SchematicName string `gorm:"column:schematicName" json:"schematicName"` + CycleTime int32 `gorm:"column:cycleTime" json:"cycleTime"` +} + +// TableName PlanetSchematic's table name +func (*PlanetSchematic) TableName() string { + return TableNamePlanetSchematic +} diff --git a/models/planetschematicspinmap.gen.go b/models/planetschematicspinmap.gen.go new file mode 100644 index 0000000..4bcf146 --- /dev/null +++ b/models/planetschematicspinmap.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNamePlanetSchematicsPinMap = "planetSchematicsPinMap" + +// PlanetSchematicsPinMap mapped from table +type PlanetSchematicsPinMap struct { + SchematicID int32 `gorm:"column:schematicID;primaryKey" json:"schematicID"` + PinTypeID int32 `gorm:"column:pinTypeID;primaryKey" json:"pinTypeID"` +} + +// TableName PlanetSchematicsPinMap's table name +func (*PlanetSchematicsPinMap) TableName() string { + return TableNamePlanetSchematicsPinMap +} diff --git a/models/planetschematicstypemap.gen.go b/models/planetschematicstypemap.gen.go new file mode 100644 index 0000000..7fda898 --- /dev/null +++ b/models/planetschematicstypemap.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNamePlanetSchematicsTypeMap = "planetSchematicsTypeMap" + +// PlanetSchematicsTypeMap mapped from table +type PlanetSchematicsTypeMap struct { + SchematicID int32 `gorm:"column:schematicID;primaryKey" json:"schematicID"` + TypeID int32 `gorm:"column:typeID;primaryKey" json:"typeID"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` + IsInput bool `gorm:"column:isInput" json:"isInput"` +} + +// TableName PlanetSchematicsTypeMap's table name +func (*PlanetSchematicsTypeMap) TableName() string { + return TableNamePlanetSchematicsTypeMap +} diff --git a/models/ramactivities.gen.go b/models/ramactivities.gen.go new file mode 100644 index 0000000..84684bc --- /dev/null +++ b/models/ramactivities.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameRAMActivity = "ramActivities" + +// RAMActivity mapped from table +type RAMActivity struct { + ActivityID int32 `gorm:"column:activityID;primaryKey" json:"activityID"` + ActivityName string `gorm:"column:activityName" json:"activityName"` + IconNo string `gorm:"column:iconNo" json:"iconNo"` + Description string `gorm:"column:description" json:"description"` + Published bool `gorm:"column:published" json:"published"` +} + +// TableName RAMActivity's table name +func (*RAMActivity) TableName() string { + return TableNameRAMActivity +} diff --git a/models/ramassemblylinestations.gen.go b/models/ramassemblylinestations.gen.go new file mode 100644 index 0000000..7dfcbe9 --- /dev/null +++ b/models/ramassemblylinestations.gen.go @@ -0,0 +1,23 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameRAMAssemblyLineStation = "ramAssemblyLineStations" + +// RAMAssemblyLineStation mapped from table +type RAMAssemblyLineStation struct { + StationID int32 `gorm:"column:stationID;primaryKey" json:"stationID"` + AssemblyLineTypeID int32 `gorm:"column:assemblyLineTypeID;primaryKey" json:"assemblyLineTypeID"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` + StationTypeID int32 `gorm:"column:stationTypeID" json:"stationTypeID"` + OwnerID int32 `gorm:"column:ownerID" json:"ownerID"` + SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"` + RegionID int32 `gorm:"column:regionID" json:"regionID"` +} + +// TableName RAMAssemblyLineStation's table name +func (*RAMAssemblyLineStation) TableName() string { + return TableNameRAMAssemblyLineStation +} diff --git a/models/ramassemblylinetypedetailpercategory.gen.go b/models/ramassemblylinetypedetailpercategory.gen.go new file mode 100644 index 0000000..ec6fa33 --- /dev/null +++ b/models/ramassemblylinetypedetailpercategory.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameRAMAssemblyLineTypeDetailPerCategory = "ramAssemblyLineTypeDetailPerCategory" + +// RAMAssemblyLineTypeDetailPerCategory mapped from table +type RAMAssemblyLineTypeDetailPerCategory struct { + AssemblyLineTypeID int32 `gorm:"column:assemblyLineTypeID;primaryKey" json:"assemblyLineTypeID"` + CategoryID int32 `gorm:"column:categoryID;primaryKey" json:"categoryID"` + TimeMultiplier float64 `gorm:"column:timeMultiplier" json:"timeMultiplier"` + MaterialMultiplier float64 `gorm:"column:materialMultiplier" json:"materialMultiplier"` + CostMultiplier float64 `gorm:"column:costMultiplier" json:"costMultiplier"` +} + +// TableName RAMAssemblyLineTypeDetailPerCategory's table name +func (*RAMAssemblyLineTypeDetailPerCategory) TableName() string { + return TableNameRAMAssemblyLineTypeDetailPerCategory +} diff --git a/models/ramassemblylinetypedetailpergroup.gen.go b/models/ramassemblylinetypedetailpergroup.gen.go new file mode 100644 index 0000000..bf47b26 --- /dev/null +++ b/models/ramassemblylinetypedetailpergroup.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameRAMAssemblyLineTypeDetailPerGroup = "ramAssemblyLineTypeDetailPerGroup" + +// RAMAssemblyLineTypeDetailPerGroup mapped from table +type RAMAssemblyLineTypeDetailPerGroup struct { + AssemblyLineTypeID int32 `gorm:"column:assemblyLineTypeID;primaryKey" json:"assemblyLineTypeID"` + GroupID int32 `gorm:"column:groupID;primaryKey" json:"groupID"` + TimeMultiplier float64 `gorm:"column:timeMultiplier" json:"timeMultiplier"` + MaterialMultiplier float64 `gorm:"column:materialMultiplier" json:"materialMultiplier"` + CostMultiplier float64 `gorm:"column:costMultiplier" json:"costMultiplier"` +} + +// TableName RAMAssemblyLineTypeDetailPerGroup's table name +func (*RAMAssemblyLineTypeDetailPerGroup) TableName() string { + return TableNameRAMAssemblyLineTypeDetailPerGroup +} diff --git a/models/ramassemblylinetypes.gen.go b/models/ramassemblylinetypes.gen.go new file mode 100644 index 0000000..721c676 --- /dev/null +++ b/models/ramassemblylinetypes.gen.go @@ -0,0 +1,25 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameRAMAssemblyLineType = "ramAssemblyLineTypes" + +// RAMAssemblyLineType mapped from table +type RAMAssemblyLineType struct { + AssemblyLineTypeID int32 `gorm:"column:assemblyLineTypeID;primaryKey" json:"assemblyLineTypeID"` + AssemblyLineTypeName string `gorm:"column:assemblyLineTypeName" json:"assemblyLineTypeName"` + Description string `gorm:"column:description" json:"description"` + BaseTimeMultiplier float64 `gorm:"column:baseTimeMultiplier" json:"baseTimeMultiplier"` + BaseMaterialMultiplier float64 `gorm:"column:baseMaterialMultiplier" json:"baseMaterialMultiplier"` + BaseCostMultiplier float64 `gorm:"column:baseCostMultiplier" json:"baseCostMultiplier"` + Volume float64 `gorm:"column:volume" json:"volume"` + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + MinCostPerHour float64 `gorm:"column:minCostPerHour" json:"minCostPerHour"` +} + +// TableName RAMAssemblyLineType's table name +func (*RAMAssemblyLineType) TableName() string { + return TableNameRAMAssemblyLineType +} diff --git a/models/raminstallationtypecontents.gen.go b/models/raminstallationtypecontents.gen.go new file mode 100644 index 0000000..1f3683b --- /dev/null +++ b/models/raminstallationtypecontents.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameRAMInstallationTypeContent = "ramInstallationTypeContents" + +// RAMInstallationTypeContent mapped from table +type RAMInstallationTypeContent struct { + InstallationTypeID int32 `gorm:"column:installationTypeID;primaryKey" json:"installationTypeID"` + AssemblyLineTypeID int32 `gorm:"column:assemblyLineTypeID;primaryKey" json:"assemblyLineTypeID"` + Quantity int32 `gorm:"column:quantity" json:"quantity"` +} + +// TableName RAMInstallationTypeContent's table name +func (*RAMInstallationTypeContent) TableName() string { + return TableNameRAMInstallationTypeContent +} diff --git a/models/skinlicense.gen.go b/models/skinlicense.gen.go new file mode 100644 index 0000000..0507d2f --- /dev/null +++ b/models/skinlicense.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameSkinLicense = "skinLicense" + +// SkinLicense mapped from table +type SkinLicense struct { + LicenseTypeID int32 `gorm:"column:licenseTypeID;primaryKey" json:"licenseTypeID"` + Duration int32 `gorm:"column:duration" json:"duration"` + SkinID int32 `gorm:"column:skinID" json:"skinID"` +} + +// TableName SkinLicense's table name +func (*SkinLicense) TableName() string { + return TableNameSkinLicense +} diff --git a/models/skinmaterials.gen.go b/models/skinmaterials.gen.go new file mode 100644 index 0000000..ab37a10 --- /dev/null +++ b/models/skinmaterials.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameSkinMaterial = "skinMaterials" + +// SkinMaterial mapped from table +type SkinMaterial struct { + SkinMaterialID int32 `gorm:"column:skinMaterialID;primaryKey" json:"skinMaterialID"` + DisplayNameID int32 `gorm:"column:displayNameID" json:"displayNameID"` + MaterialSetID int32 `gorm:"column:materialSetID" json:"materialSetID"` +} + +// TableName SkinMaterial's table name +func (*SkinMaterial) TableName() string { + return TableNameSkinMaterial +} diff --git a/models/skins.gen.go b/models/skins.gen.go new file mode 100644 index 0000000..6097e05 --- /dev/null +++ b/models/skins.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameSkin = "skins" + +// Skin mapped from table +type Skin struct { + SkinID int32 `gorm:"column:skinID;primaryKey" json:"skinID"` + InternalName string `gorm:"column:internalName" json:"internalName"` + SkinMaterialID int32 `gorm:"column:skinMaterialID" json:"skinMaterialID"` +} + +// TableName Skin's table name +func (*Skin) TableName() string { + return TableNameSkin +} diff --git a/models/skinship.gen.go b/models/skinship.gen.go new file mode 100644 index 0000000..18fb634 --- /dev/null +++ b/models/skinship.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameSkinShip = "skinShip" + +// SkinShip mapped from table +type SkinShip struct { + SkinID int32 `gorm:"column:skinID" json:"skinID"` + TypeID int32 `gorm:"column:typeID" json:"typeID"` +} + +// TableName SkinShip's table name +func (*SkinShip) TableName() string { + return TableNameSkinShip +} diff --git a/models/staoperations.gen.go b/models/staoperations.gen.go new file mode 100644 index 0000000..a5520fa --- /dev/null +++ b/models/staoperations.gen.go @@ -0,0 +1,30 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameStaOperation = "staOperations" + +// StaOperation mapped from table +type StaOperation struct { + ActivityID int32 `gorm:"column:activityID" json:"activityID"` + OperationID int32 `gorm:"column:operationID;primaryKey" json:"operationID"` + OperationName string `gorm:"column:operationName" json:"operationName"` + Description string `gorm:"column:description" json:"description"` + Fringe int32 `gorm:"column:fringe" json:"fringe"` + Corridor int32 `gorm:"column:corridor" json:"corridor"` + Hub int32 `gorm:"column:hub" json:"hub"` + Border int32 `gorm:"column:border" json:"border"` + Ratio int32 `gorm:"column:ratio" json:"ratio"` + CaldariStationTypeID int32 `gorm:"column:caldariStationTypeID" json:"caldariStationTypeID"` + MinmatarStationTypeID int32 `gorm:"column:minmatarStationTypeID" json:"minmatarStationTypeID"` + AmarrStationTypeID int32 `gorm:"column:amarrStationTypeID" json:"amarrStationTypeID"` + GallenteStationTypeID int32 `gorm:"column:gallenteStationTypeID" json:"gallenteStationTypeID"` + JoveStationTypeID int32 `gorm:"column:joveStationTypeID" json:"joveStationTypeID"` +} + +// TableName StaOperation's table name +func (*StaOperation) TableName() string { + return TableNameStaOperation +} diff --git a/models/staoperationservices.gen.go b/models/staoperationservices.gen.go new file mode 100644 index 0000000..a8a83af --- /dev/null +++ b/models/staoperationservices.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameStaOperationService = "staOperationServices" + +// StaOperationService mapped from table +type StaOperationService struct { + OperationID int32 `gorm:"column:operationID;primaryKey" json:"operationID"` + ServiceID int32 `gorm:"column:serviceID;primaryKey" json:"serviceID"` +} + +// TableName StaOperationService's table name +func (*StaOperationService) TableName() string { + return TableNameStaOperationService +} diff --git a/models/staservices.gen.go b/models/staservices.gen.go new file mode 100644 index 0000000..d430838 --- /dev/null +++ b/models/staservices.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameStaService = "staServices" + +// StaService mapped from table +type StaService struct { + ServiceID int32 `gorm:"column:serviceID;primaryKey" json:"serviceID"` + ServiceName string `gorm:"column:serviceName" json:"serviceName"` + Description string `gorm:"column:description" json:"description"` +} + +// TableName StaService's table name +func (*StaService) TableName() string { + return TableNameStaService +} diff --git a/models/stastations.gen.go b/models/stastations.gen.go new file mode 100644 index 0000000..a31f439 --- /dev/null +++ b/models/stastations.gen.go @@ -0,0 +1,34 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameStaStation = "staStations" + +// StaStation mapped from table +type StaStation struct { + StationID int64 `gorm:"column:stationID;primaryKey" json:"stationID"` + Security float64 `gorm:"column:security" json:"security"` + DockingCostPerVolume float64 `gorm:"column:dockingCostPerVolume" json:"dockingCostPerVolume"` + MaxShipVolumeDockable float64 `gorm:"column:maxShipVolumeDockable" json:"maxShipVolumeDockable"` + OfficeRentalCost int32 `gorm:"column:officeRentalCost" json:"officeRentalCost"` + OperationID int32 `gorm:"column:operationID" json:"operationID"` + StationTypeID int32 `gorm:"column:stationTypeID" json:"stationTypeID"` + CorporationID int32 `gorm:"column:corporationID" json:"corporationID"` + SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"` + ConstellationID int32 `gorm:"column:constellationID" json:"constellationID"` + RegionID int32 `gorm:"column:regionID" json:"regionID"` + StationName string `gorm:"column:stationName" json:"stationName"` + X float64 `gorm:"column:x" json:"x"` + Y float64 `gorm:"column:y" json:"y"` + Z float64 `gorm:"column:z" json:"z"` + ReprocessingEfficiency float64 `gorm:"column:reprocessingEfficiency" json:"reprocessingEfficiency"` + ReprocessingStationsTake float64 `gorm:"column:reprocessingStationsTake" json:"reprocessingStationsTake"` + ReprocessingHangarFlag int32 `gorm:"column:reprocessingHangarFlag" json:"reprocessingHangarFlag"` +} + +// TableName StaStation's table name +func (*StaStation) TableName() string { + return TableNameStaStation +} diff --git a/models/stastationtypes.gen.go b/models/stastationtypes.gen.go new file mode 100644 index 0000000..52face7 --- /dev/null +++ b/models/stastationtypes.gen.go @@ -0,0 +1,27 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameStaStationType = "staStationTypes" + +// StaStationType mapped from table +type StaStationType struct { + StationTypeID int32 `gorm:"column:stationTypeID;primaryKey" json:"stationTypeID"` + DockEntryX float64 `gorm:"column:dockEntryX" json:"dockEntryX"` + DockEntryY float64 `gorm:"column:dockEntryY" json:"dockEntryY"` + DockEntryZ float64 `gorm:"column:dockEntryZ" json:"dockEntryZ"` + DockOrientationX float64 `gorm:"column:dockOrientationX" json:"dockOrientationX"` + DockOrientationY float64 `gorm:"column:dockOrientationY" json:"dockOrientationY"` + DockOrientationZ float64 `gorm:"column:dockOrientationZ" json:"dockOrientationZ"` + OperationID int32 `gorm:"column:operationID" json:"operationID"` + OfficeSlots int32 `gorm:"column:officeSlots" json:"officeSlots"` + ReprocessingEfficiency float64 `gorm:"column:reprocessingEfficiency" json:"reprocessingEfficiency"` + Conquerable bool `gorm:"column:conquerable" json:"conquerable"` +} + +// TableName StaStationType's table name +func (*StaStationType) TableName() string { + return TableNameStaStationType +} diff --git a/models/translationtables.gen.go b/models/translationtables.gen.go new file mode 100644 index 0000000..668cc11 --- /dev/null +++ b/models/translationtables.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameTranslationTable = "translationTables" + +// TranslationTable mapped from table +type TranslationTable struct { + SourceTable string `gorm:"column:sourceTable;primaryKey" json:"sourceTable"` + DestinationTable string `gorm:"column:destinationTable" json:"destinationTable"` + TranslatedKey string `gorm:"column:translatedKey;primaryKey" json:"translatedKey"` + TcGroupID int32 `gorm:"column:tcGroupID" json:"tcGroupID"` + TcID int32 `gorm:"column:tcID" json:"tcID"` +} + +// TableName TranslationTable's table name +func (*TranslationTable) TableName() string { + return TableNameTranslationTable +} diff --git a/models/trntranslationcolumns.gen.go b/models/trntranslationcolumns.gen.go new file mode 100644 index 0000000..af045ab --- /dev/null +++ b/models/trntranslationcolumns.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameTrnTranslationColumn = "trnTranslationColumns" + +// TrnTranslationColumn mapped from table +type TrnTranslationColumn struct { + TcGroupID int32 `gorm:"column:tcGroupID" json:"tcGroupID"` + TcID int32 `gorm:"column:tcID;primaryKey" json:"tcID"` + TableName string `gorm:"column:tableName;not null" json:"tableName"` + ColumnName string `gorm:"column:columnName;not null" json:"columnName"` + MasterID string `gorm:"column:masterID" json:"masterID"` +} + +// TableName TrnTranslationColumn's table name +func (*TrnTranslationColumn) TableName() string { + return TableNameTrnTranslationColumn +} diff --git a/models/trntranslationlanguages.gen.go b/models/trntranslationlanguages.gen.go new file mode 100644 index 0000000..0078ea6 --- /dev/null +++ b/models/trntranslationlanguages.gen.go @@ -0,0 +1,19 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameTrnTranslationLanguage = "trnTranslationLanguages" + +// TrnTranslationLanguage mapped from table +type TrnTranslationLanguage struct { + NumericLanguageID int32 `gorm:"column:numericLanguageID;primaryKey" json:"numericLanguageID"` + LanguageID string `gorm:"column:languageID" json:"languageID"` + LanguageName string `gorm:"column:languageName" json:"languageName"` +} + +// TableName TrnTranslationLanguage's table name +func (*TrnTranslationLanguage) TableName() string { + return TableNameTrnTranslationLanguage +} diff --git a/models/trntranslations.gen.go b/models/trntranslations.gen.go new file mode 100644 index 0000000..a796fbd --- /dev/null +++ b/models/trntranslations.gen.go @@ -0,0 +1,20 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameTrnTranslation = "trnTranslations" + +// TrnTranslation mapped from table +type TrnTranslation struct { + TcID int32 `gorm:"column:tcID;primaryKey" json:"tcID"` + KeyID int32 `gorm:"column:keyID;primaryKey" json:"keyID"` + LanguageID string `gorm:"column:languageID;primaryKey" json:"languageID"` + Text string `gorm:"column:text;not null" json:"text"` +} + +// TableName TrnTranslation's table name +func (*TrnTranslation) TableName() string { + return TableNameTrnTranslation +} diff --git a/models/warcombatzones.gen.go b/models/warcombatzones.gen.go new file mode 100644 index 0000000..17b2e5c --- /dev/null +++ b/models/warcombatzones.gen.go @@ -0,0 +1,21 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameWarCombatZone = "warCombatZones" + +// WarCombatZone mapped from table +type WarCombatZone struct { + CombatZoneID int32 `gorm:"column:combatZoneID;primaryKey" json:"combatZoneID"` + CombatZoneName string `gorm:"column:combatZoneName" json:"combatZoneName"` + FactionID int32 `gorm:"column:factionID" json:"factionID"` + CenterSystemID int32 `gorm:"column:centerSystemID" json:"centerSystemID"` + Description string `gorm:"column:description" json:"description"` +} + +// TableName WarCombatZone's table name +func (*WarCombatZone) TableName() string { + return TableNameWarCombatZone +} diff --git a/models/warcombatzonesystems.gen.go b/models/warcombatzonesystems.gen.go new file mode 100644 index 0000000..a2496e8 --- /dev/null +++ b/models/warcombatzonesystems.gen.go @@ -0,0 +1,18 @@ +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. +// Code generated by gorm.io/gen. DO NOT EDIT. + +package models + +const TableNameWarCombatZoneSystem = "warCombatZoneSystems" + +// WarCombatZoneSystem mapped from table +type WarCombatZoneSystem struct { + SolarSystemID int32 `gorm:"column:solarSystemID;primaryKey" json:"solarSystemID"` + CombatZoneID int32 `gorm:"column:combatZoneID" json:"combatZoneID"` +} + +// TableName WarCombatZoneSystem's table name +func (*WarCombatZoneSystem) TableName() string { + return TableNameWarCombatZoneSystem +} diff --git a/mprocs.yaml b/mprocs.yaml index a90271f..0a9d08a 100644 --- a/mprocs.yaml +++ b/mprocs.yaml @@ -33,7 +33,7 @@ procs: send-keys: [""] gorm-gentool-generate: - shell: 'gentool -db postgres -dsn "host=localhost user=postgres password=postgres dbname=zkill port=5432 sslmode=disable search_path=evesde" -outPath models -modelPkgName models' + shell: 'gentool -db postgres -dsn "host=localhost user=postgres password=postgres dbname=zkill port=5432 sslmode=disable search_path=evesde" -outPath types -modelPkgName models -onlyModel' autostart: false stop: send-keys: [""]