SUrvey now works
This commit is contained in:
@@ -1,24 +1,36 @@
|
||||
package db
|
||||
|
||||
type BasicProfile struct {
|
||||
CompanyId int
|
||||
Employees string
|
||||
Revenue string
|
||||
Applications string
|
||||
Compliance string
|
||||
Industry string
|
||||
ITDependency string
|
||||
DataSensitivity string
|
||||
DataVolume string
|
||||
NetworkSegmentation string
|
||||
LegacySystems string
|
||||
IoTIntegration string
|
||||
RemoteWork string
|
||||
BYOD string
|
||||
VPN string
|
||||
API string
|
||||
VendorAccess string
|
||||
InternalDev string
|
||||
CompanyId int // Company ID (foreign key reference)
|
||||
Employees string // Current employee headcount
|
||||
Revenue string // Annual revenue range
|
||||
Applications string // Critical business applications
|
||||
Compliance string // Regulatory frameworks
|
||||
Industry string // Primary industry sector
|
||||
ITDependency string // Technology dependency
|
||||
DataSensitivity string // Sensitive data level
|
||||
DataVolume string // Data volume (if applicable)
|
||||
NetworkSegmentation string // Network infrastructure model
|
||||
LegacySystems string // Legacy systems (if applicable)
|
||||
IoTIntegration string // IoT integration (if applicable)
|
||||
RemoteWork string // Remote work details
|
||||
BYOD string // Bring Your Own Device policy
|
||||
VPN string // VPN usage policy
|
||||
API string // API integration (if applicable)
|
||||
VendorAccess string // Third-party vendor access
|
||||
InternalDev string // Internal software development activities
|
||||
|
||||
// New fields from the advanced form
|
||||
GeoScope string // Geographic operational scope
|
||||
CustomerBase string // Customer base distribution
|
||||
CustomerType string // Primary customer type
|
||||
ProductPortfolio string // Product/service portfolio
|
||||
SupplierBase string // Supplier base structure
|
||||
ITInfrastructure string // IT infrastructure model (comma-separated values)
|
||||
IPProtection string // Intellectual property protection (comma-separated values)
|
||||
SensitiveData string // Sensitive data types (comma-separated values)
|
||||
IntegrationLevel string // Integration level of business systems
|
||||
RemotePolicy string // Remote work policy
|
||||
}
|
||||
|
||||
// InsertBasicProfile inserts a new record into the BasicProfile table
|
||||
|
||||
Reference in New Issue
Block a user