Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

CnChunfeng / crm_server

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Find file
BlameHistoryPermalink
Switch branch/tag
  • crm_server
  • internal
  • model
  • user_extend.go
  • 朱继来's avatar
    设置限制跟进时间 · 0f0fc0aa
    朱继来 committed 4 years ago
    0f0fc0aa Browse Files
user_extend.go 504 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package model

type UserExtend struct {
	Id int `db:"id"`
	User_Id int `db:"user_id"`
	Outter_Uid int `db:"outter_uid"`
	No_Create_Order int `db:"no_create_order"`
	Latest_Order_Time int `db:"latest_order_time"`
	Completed_Order_Nums int `db:"completed_order_nums"`
	Model_Nums int `db:"model_nums"`
	Total_Order_Amount float64 `db:"total_order_amount"`
	Amount_Paid float64 `db:"amount_paid"`
	Contact string `db:"contact"`
	Contact_Info string `db:"contact_info"`
	Create_Time int `db:"create_time"`
}