package model

type Kefu struct {
	Id           int    `json:"id" db:"id"`
	SaleId       int    `json:"sale_id" db:"sale_id"`
	SaleName     string `json:"sale_name" db:"sale_name"`
	Email        string `json:"email" db:"email"`
	Status       int    `json:"status" db:"status"`
	OperatorId   int    `json:"operator_id" db:"operator_id"`
	OperatorName string `json:"operator_name" db:"operator_name"`
	Create_Time  int64  `json:"create_time" db:"create_time"`
	Update_Time  int64  `json:"update_time" db:"update_time"`
}