28 lines
1.3 KiB
Go
28 lines
1.3 KiB
Go
// 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 model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const TableNameAiAdviceClient = "ai_advice_client"
|
|
|
|
// AiAdviceClient mapped from table <ai_advice_client>
|
|
type AiAdviceClient struct {
|
|
ClientID int32 `gorm:"column:client_id;primaryKey;autoIncrement:true" json:"client_id"`
|
|
PersonalInfo string `gorm:"column:personal_info;comment:区域价值话术库" json:"personal_info"` // 区域价值话术库
|
|
PurchasePurpose string `gorm:"column:purchase_purpose;comment:竞品对比话术" json:"purchase_purpose"` // 竞品对比话术
|
|
CoreDemands string `gorm:"column:core_demands;comment:项目核心卖点" json:"core_demands"` // 项目核心卖点
|
|
Concerns string `gorm:"column:concerns;comment:配套体系" json:"concerns"` // 配套体系
|
|
DecisionProfile string `gorm:"column:decision_profile;comment:开发商背书" json:"decision_profile"` // 开发商背书
|
|
CreateAt time.Time `gorm:"column:create_at;default:CURRENT_TIMESTAMP" json:"create_at"`
|
|
}
|
|
|
|
// TableName AiAdviceClient's table name
|
|
func (*AiAdviceClient) TableName() string {
|
|
return TableNameAiAdviceClient
|
|
}
|