schema.go 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305
  1. // Code generated by ent, DO NOT EDIT.
  2. package migrate
  3. import (
  4. "entgo.io/ent/dialect/entsql"
  5. "entgo.io/ent/dialect/sql/schema"
  6. "entgo.io/ent/schema/field"
  7. )
  8. var (
  9. // AgentColumns holds the columns for the "agent" table.
  10. AgentColumns = []*schema.Column{
  11. {Name: "id", Type: field.TypeUint64, Increment: true},
  12. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  13. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  14. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  15. {Name: "name", Type: field.TypeString, Size: 255, Comment: "name | 角色名称"},
  16. {Name: "role", Type: field.TypeString, Comment: "role | 角色设定"},
  17. {Name: "status", Type: field.TypeInt, Nullable: true, Comment: "status | 状态 1-正常 2-禁用", Default: 1},
  18. {Name: "background", Type: field.TypeString, Nullable: true, Comment: "background | 背景介绍", Default: ""},
  19. {Name: "examples", Type: field.TypeString, Nullable: true, Comment: "examples | 对话案例", Default: ""},
  20. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  21. {Name: "dataset_id", Type: field.TypeString, Size: 255, Comment: "dataset_id | 知识库ID", Default: ""},
  22. {Name: "collection_id", Type: field.TypeString, Size: 255, Comment: "collection_id | 集合ID", Default: ""},
  23. }
  24. // AgentTable holds the schema information for the "agent" table.
  25. AgentTable = &schema.Table{
  26. Name: "agent",
  27. Columns: AgentColumns,
  28. PrimaryKey: []*schema.Column{AgentColumns[0]},
  29. Indexes: []*schema.Index{
  30. {
  31. Name: "agent_organization_id",
  32. Unique: false,
  33. Columns: []*schema.Column{AgentColumns[9]},
  34. },
  35. },
  36. }
  37. // AgentBaseColumns holds the columns for the "agent_base" table.
  38. AgentBaseColumns = []*schema.Column{
  39. {Name: "id", Type: field.TypeString, Comment: "id"},
  40. {Name: "q", Type: field.TypeString, Nullable: true, Comment: "q", Default: ""},
  41. {Name: "a", Type: field.TypeString, Nullable: true, Comment: "a", Default: ""},
  42. {Name: "chunk_index", Type: field.TypeUint64, Comment: "chunk_index"},
  43. {Name: "indexes", Type: field.TypeJSON, Nullable: true, Comment: "indexes"},
  44. {Name: "dataset_id", Type: field.TypeString, Nullable: true, Comment: "dataset_id", Default: ""},
  45. {Name: "collection_id", Type: field.TypeString, Nullable: true, Comment: "collection_id", Default: ""},
  46. {Name: "source_name", Type: field.TypeString, Nullable: true, Comment: "source_name", Default: ""},
  47. {Name: "can_write", Type: field.TypeJSON, Nullable: true, Comment: "can_write"},
  48. {Name: "is_owner", Type: field.TypeJSON, Nullable: true, Comment: "is_owner"},
  49. }
  50. // AgentBaseTable holds the schema information for the "agent_base" table.
  51. AgentBaseTable = &schema.Table{
  52. Name: "agent_base",
  53. Columns: AgentBaseColumns,
  54. PrimaryKey: []*schema.Column{AgentBaseColumns[0]},
  55. }
  56. // AliyunAvatarColumns holds the columns for the "aliyun_avatar" table.
  57. AliyunAvatarColumns = []*schema.Column{
  58. {Name: "id", Type: field.TypeUint64, Increment: true},
  59. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  60. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  61. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  62. {Name: "user_id", Type: field.TypeUint64, Comment: "user_id | wx_card_user_id"},
  63. {Name: "biz_id", Type: field.TypeString, Comment: "biz_id | BizId"},
  64. {Name: "access_key_id", Type: field.TypeString, Comment: "access_key_id | AccessKeyId"},
  65. {Name: "access_key_secret", Type: field.TypeString, Comment: "access_key_secret | AccessKeySecret"},
  66. {Name: "app_id", Type: field.TypeString, Nullable: true, Comment: "app_id | AppId"},
  67. {Name: "tenant_id", Type: field.TypeUint64, Comment: "tenant_id | TenantId"},
  68. {Name: "response", Type: field.TypeString, Size: 2147483647, Comment: "response | 阿里云avatar响应"},
  69. {Name: "token", Type: field.TypeString, Comment: "token | Token", Default: ""},
  70. {Name: "session_id", Type: field.TypeString, Comment: "session_id | SessionId", Default: ""},
  71. }
  72. // AliyunAvatarTable holds the schema information for the "aliyun_avatar" table.
  73. AliyunAvatarTable = &schema.Table{
  74. Name: "aliyun_avatar",
  75. Columns: AliyunAvatarColumns,
  76. PrimaryKey: []*schema.Column{AliyunAvatarColumns[0]},
  77. Indexes: []*schema.Index{
  78. {
  79. Name: "aliyunavatar_user_id",
  80. Unique: false,
  81. Columns: []*schema.Column{AliyunAvatarColumns[4]},
  82. },
  83. },
  84. }
  85. // BatchMsgColumns holds the columns for the "batch_msg" table.
  86. BatchMsgColumns = []*schema.Column{
  87. {Name: "id", Type: field.TypeUint64, Increment: true},
  88. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  89. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  90. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  91. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "状态 0 未开始 1 开始发送 2 发送完成 3 发送中止"},
  92. {Name: "batch_no", Type: field.TypeString, Unique: true, Nullable: true, Comment: "批次号"},
  93. {Name: "task_name", Type: field.TypeString, Nullable: true, Comment: "任务名称", Default: ""},
  94. {Name: "fromwxid", Type: field.TypeString, Nullable: true, Comment: "发送方微信ID"},
  95. {Name: "msg", Type: field.TypeString, Nullable: true, Comment: "内容"},
  96. {Name: "tag", Type: field.TypeString, Nullable: true, Comment: "发送规则 all 全部 tag1,tag2 按tag发送"},
  97. {Name: "tagids", Type: field.TypeString, Nullable: true, Comment: "要发送的tagids"},
  98. {Name: "total", Type: field.TypeInt32, Nullable: true, Comment: "总数"},
  99. {Name: "success", Type: field.TypeInt32, Nullable: true, Comment: "成功数量"},
  100. {Name: "fail", Type: field.TypeInt32, Nullable: true, Comment: "失败数量"},
  101. {Name: "start_time", Type: field.TypeTime, Nullable: true, Comment: "开始时间"},
  102. {Name: "stop_time", Type: field.TypeTime, Nullable: true, Comment: "结束时间"},
  103. {Name: "send_time", Type: field.TypeTime, Nullable: true, Comment: "发送时间"},
  104. {Name: "type", Type: field.TypeInt32, Nullable: true, Comment: "发送类型 1-群发消息 2-群发朋友圈"},
  105. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  106. }
  107. // BatchMsgTable holds the schema information for the "batch_msg" table.
  108. BatchMsgTable = &schema.Table{
  109. Name: "batch_msg",
  110. Columns: BatchMsgColumns,
  111. PrimaryKey: []*schema.Column{BatchMsgColumns[0]},
  112. Indexes: []*schema.Index{
  113. {
  114. Name: "batchmsg_batch_no",
  115. Unique: true,
  116. Columns: []*schema.Column{BatchMsgColumns[5]},
  117. },
  118. {
  119. Name: "batchmsg_type",
  120. Unique: false,
  121. Columns: []*schema.Column{BatchMsgColumns[17]},
  122. },
  123. },
  124. }
  125. // CategoryColumns holds the columns for the "category" table.
  126. CategoryColumns = []*schema.Column{
  127. {Name: "id", Type: field.TypeUint64, Increment: true},
  128. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  129. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  130. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  131. {Name: "name", Type: field.TypeString, Size: 255, Comment: "name | 角色名称"},
  132. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  133. }
  134. // CategoryTable holds the schema information for the "category" table.
  135. CategoryTable = &schema.Table{
  136. Name: "category",
  137. Columns: CategoryColumns,
  138. PrimaryKey: []*schema.Column{CategoryColumns[0]},
  139. Indexes: []*schema.Index{
  140. {
  141. Name: "category_organization_id",
  142. Unique: false,
  143. Columns: []*schema.Column{CategoryColumns[5]},
  144. },
  145. },
  146. }
  147. // ChatRecordsColumns holds the columns for the "chat_records" table.
  148. ChatRecordsColumns = []*schema.Column{
  149. {Name: "id", Type: field.TypeUint64, Increment: true},
  150. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  151. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  152. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  153. {Name: "content", Type: field.TypeString, Comment: "内容", Default: ""},
  154. {Name: "content_type", Type: field.TypeUint8, Comment: "内容类型:1-提问 2-回答", Default: 1},
  155. {Name: "session_id", Type: field.TypeUint64, Comment: "会话ID", Default: 0},
  156. {Name: "user_id", Type: field.TypeUint64, Comment: "用户ID", Default: 0},
  157. {Name: "bot_id", Type: field.TypeUint64, Comment: "聊天ID", Default: 0},
  158. {Name: "bot_type", Type: field.TypeUint8, Comment: "类型:1-微信 2-小程序card 3-智能体", Default: 2},
  159. }
  160. // ChatRecordsTable holds the schema information for the "chat_records" table.
  161. ChatRecordsTable = &schema.Table{
  162. Name: "chat_records",
  163. Columns: ChatRecordsColumns,
  164. PrimaryKey: []*schema.Column{ChatRecordsColumns[0]},
  165. Indexes: []*schema.Index{
  166. {
  167. Name: "chatrecords_user_id_bot_id_bot_type",
  168. Unique: false,
  169. Columns: []*schema.Column{ChatRecordsColumns[7], ChatRecordsColumns[8], ChatRecordsColumns[9]},
  170. },
  171. {
  172. Name: "chatrecords_session_id",
  173. Unique: false,
  174. Columns: []*schema.Column{ChatRecordsColumns[6]},
  175. },
  176. },
  177. }
  178. // ChatSessionColumns holds the columns for the "chat_session" table.
  179. ChatSessionColumns = []*schema.Column{
  180. {Name: "id", Type: field.TypeUint64, Increment: true},
  181. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  182. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  183. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  184. {Name: "name", Type: field.TypeString, Comment: "名称", Default: ""},
  185. {Name: "user_id", Type: field.TypeUint64, Comment: "用户ID", Default: 0},
  186. {Name: "bot_id", Type: field.TypeUint64, Comment: "聊天ID", Default: 0},
  187. {Name: "bot_type", Type: field.TypeUint8, Comment: "类型:1-微信 2-小程序card 3-智能体", Default: 2},
  188. }
  189. // ChatSessionTable holds the schema information for the "chat_session" table.
  190. ChatSessionTable = &schema.Table{
  191. Name: "chat_session",
  192. Columns: ChatSessionColumns,
  193. PrimaryKey: []*schema.Column{ChatSessionColumns[0]},
  194. Indexes: []*schema.Index{
  195. {
  196. Name: "chatsession_user_id_bot_id_bot_type",
  197. Unique: false,
  198. Columns: []*schema.Column{ChatSessionColumns[5], ChatSessionColumns[6], ChatSessionColumns[7]},
  199. },
  200. },
  201. }
  202. // ContactColumns holds the columns for the "contact" table.
  203. ContactColumns = []*schema.Column{
  204. {Name: "id", Type: field.TypeUint64, Increment: true},
  205. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  206. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  207. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  208. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  209. {Name: "wx_wxid", Type: field.TypeString, Comment: "属主微信id", Default: ""},
  210. {Name: "type", Type: field.TypeInt, Nullable: true, Comment: "联系人类型:1好友,2群组,3公众号,4企业微信联系人", Default: 1},
  211. {Name: "wxid", Type: field.TypeString, Comment: "微信id 公众号微信ID", Default: ""},
  212. {Name: "account", Type: field.TypeString, Comment: "微信账号", Default: ""},
  213. {Name: "nickname", Type: field.TypeString, Comment: "微信昵称 群备注名称", Default: ""},
  214. {Name: "markname", Type: field.TypeString, Comment: "备注名", Default: ""},
  215. {Name: "headimg", Type: field.TypeString, Comment: "头像", Default: ""},
  216. {Name: "sex", Type: field.TypeInt, Comment: "性别 0未知 1男 2女", Default: 0},
  217. {Name: "starrole", Type: field.TypeString, Comment: "星标 65/67=星标 1/3=未星标", Default: ""},
  218. {Name: "dontseeit", Type: field.TypeInt, Comment: "不让他看我的朋友圈 0可以看 1不让看", Default: 0},
  219. {Name: "dontseeme", Type: field.TypeInt, Comment: "不看他的朋友圈 0可以看 1不看 1=开启了不看他 128/129=仅聊天", Default: 0},
  220. {Name: "lag", Type: field.TypeString, Comment: "所属标签id清单,多开会用逗号隔开", Default: ""},
  221. {Name: "gid", Type: field.TypeString, Comment: "群组id", Default: ""},
  222. {Name: "gname", Type: field.TypeString, Comment: "群组名称", Default: ""},
  223. {Name: "v3", Type: field.TypeString, Comment: "v3数据", Default: ""},
  224. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  225. }
  226. // ContactTable holds the schema information for the "contact" table.
  227. ContactTable = &schema.Table{
  228. Name: "contact",
  229. Columns: ContactColumns,
  230. PrimaryKey: []*schema.Column{ContactColumns[0]},
  231. Indexes: []*schema.Index{
  232. {
  233. Name: "contact_wx_wxid_wxid",
  234. Unique: true,
  235. Columns: []*schema.Column{ContactColumns[5], ContactColumns[7]},
  236. },
  237. {
  238. Name: "contact_wxid",
  239. Unique: false,
  240. Columns: []*schema.Column{ContactColumns[7]},
  241. },
  242. {
  243. Name: "contact_type",
  244. Unique: false,
  245. Columns: []*schema.Column{ContactColumns[6]},
  246. },
  247. {
  248. Name: "contact_gid",
  249. Unique: false,
  250. Columns: []*schema.Column{ContactColumns[17]},
  251. },
  252. },
  253. }
  254. // EmployeeColumns holds the columns for the "employee" table.
  255. EmployeeColumns = []*schema.Column{
  256. {Name: "id", Type: field.TypeUint64, Increment: true},
  257. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  258. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  259. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  260. {Name: "title", Type: field.TypeString, Size: 1000, Comment: "title | 标题"},
  261. {Name: "avatar", Type: field.TypeString, Comment: "avatar | 头像"},
  262. {Name: "tags", Type: field.TypeString, Comment: "tags | 个人标签"},
  263. {Name: "hire_count", Type: field.TypeInt, Comment: "hire_count | 被雇佣次数", Default: 0},
  264. {Name: "service_count", Type: field.TypeInt, Comment: "service_count | 已服务次数", Default: 0},
  265. {Name: "achievement_count", Type: field.TypeInt, Comment: "achievement_count | 业绩单数", Default: 0},
  266. {Name: "intro", Type: field.TypeString, Comment: "intro | 个人介绍", Default: ""},
  267. {Name: "estimate", Type: field.TypeString, Comment: "estimate | 自我评价", Default: ""},
  268. {Name: "skill", Type: field.TypeString, Comment: "skill | 技能卡", Default: ""},
  269. {Name: "ability_type", Type: field.TypeString, Comment: "ability_type | 能力类型", Default: ""},
  270. {Name: "scene", Type: field.TypeString, Comment: "scene | 使用场景", Default: ""},
  271. {Name: "switch_in", Type: field.TypeString, Comment: "switch_in | 支持介入", Default: ""},
  272. {Name: "video_url", Type: field.TypeString, Comment: "video_url | 视频地址", Default: ""},
  273. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  274. {Name: "category_id", Type: field.TypeUint64, Comment: "category_id | 分类ID"},
  275. {Name: "api_base", Type: field.TypeString, Comment: "api_base", Default: ""},
  276. {Name: "api_key", Type: field.TypeString, Comment: "api_key", Default: ""},
  277. {Name: "ai_info", Type: field.TypeString, Nullable: true, Comment: "AI信息"},
  278. {Name: "is_vip", Type: field.TypeInt, Comment: "是否VIP:0-否 1-是", Default: 0},
  279. {Name: "chat_url", Type: field.TypeString, Comment: "聊天URL"},
  280. }
  281. // EmployeeTable holds the schema information for the "employee" table.
  282. EmployeeTable = &schema.Table{
  283. Name: "employee",
  284. Columns: EmployeeColumns,
  285. PrimaryKey: []*schema.Column{EmployeeColumns[0]},
  286. Indexes: []*schema.Index{
  287. {
  288. Name: "employee_organization_id",
  289. Unique: false,
  290. Columns: []*schema.Column{EmployeeColumns[17]},
  291. },
  292. },
  293. }
  294. // EmployeeConfigColumns holds the columns for the "employee_config" table.
  295. EmployeeConfigColumns = []*schema.Column{
  296. {Name: "id", Type: field.TypeUint64, Increment: true},
  297. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  298. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  299. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  300. {Name: "stype", Type: field.TypeString, Comment: "类型:scene-场景 switch_in-接入方式", Default: ""},
  301. {Name: "title", Type: field.TypeString, Comment: "标题", Default: ""},
  302. {Name: "photo", Type: field.TypeString, Comment: "图片地址", Default: ""},
  303. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  304. }
  305. // EmployeeConfigTable holds the schema information for the "employee_config" table.
  306. EmployeeConfigTable = &schema.Table{
  307. Name: "employee_config",
  308. Columns: EmployeeConfigColumns,
  309. PrimaryKey: []*schema.Column{EmployeeConfigColumns[0]},
  310. Indexes: []*schema.Index{
  311. {
  312. Name: "employeeconfig_stype",
  313. Unique: false,
  314. Columns: []*schema.Column{EmployeeConfigColumns[4]},
  315. },
  316. },
  317. }
  318. // LabelColumns holds the columns for the "label" table.
  319. LabelColumns = []*schema.Column{
  320. {Name: "id", Type: field.TypeUint64, Increment: true},
  321. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  322. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  323. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  324. {Name: "type", Type: field.TypeInt, Comment: "标签类型:1好友,2群组,3公众号,4企业微信联系人", Default: 1},
  325. {Name: "name", Type: field.TypeString, Comment: "标签名称", Default: ""},
  326. {Name: "from", Type: field.TypeInt, Comment: "标签来源:1后台创建 2个微同步", Default: 1},
  327. {Name: "mode", Type: field.TypeInt, Comment: "标签模式:1动态 2静态", Default: 1},
  328. {Name: "conditions", Type: field.TypeString, Nullable: true, Comment: "标签的触达条件", Default: ""},
  329. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  330. }
  331. // LabelTable holds the schema information for the "label" table.
  332. LabelTable = &schema.Table{
  333. Name: "label",
  334. Columns: LabelColumns,
  335. PrimaryKey: []*schema.Column{LabelColumns[0]},
  336. Indexes: []*schema.Index{
  337. {
  338. Name: "label_name_from_mode",
  339. Unique: true,
  340. Columns: []*schema.Column{LabelColumns[5], LabelColumns[6], LabelColumns[7]},
  341. },
  342. },
  343. }
  344. // LabelRelationshipColumns holds the columns for the "label_relationship" table.
  345. LabelRelationshipColumns = []*schema.Column{
  346. {Name: "id", Type: field.TypeUint64, Increment: true},
  347. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  348. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  349. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  350. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  351. {Name: "contact_id", Type: field.TypeUint64, Comment: "联系人 ID", Default: 1},
  352. {Name: "label_id", Type: field.TypeUint64, Comment: "标签 ID", Default: 1},
  353. }
  354. // LabelRelationshipTable holds the schema information for the "label_relationship" table.
  355. LabelRelationshipTable = &schema.Table{
  356. Name: "label_relationship",
  357. Columns: LabelRelationshipColumns,
  358. PrimaryKey: []*schema.Column{LabelRelationshipColumns[0]},
  359. ForeignKeys: []*schema.ForeignKey{
  360. {
  361. Symbol: "label_relationship_contact_contact_relationships",
  362. Columns: []*schema.Column{LabelRelationshipColumns[5]},
  363. RefColumns: []*schema.Column{ContactColumns[0]},
  364. OnDelete: schema.NoAction,
  365. },
  366. {
  367. Symbol: "label_relationship_label_label_relationships",
  368. Columns: []*schema.Column{LabelRelationshipColumns[6]},
  369. RefColumns: []*schema.Column{LabelColumns[0]},
  370. OnDelete: schema.NoAction,
  371. },
  372. },
  373. Indexes: []*schema.Index{
  374. {
  375. Name: "labelrelationship_label_id",
  376. Unique: false,
  377. Columns: []*schema.Column{LabelRelationshipColumns[6]},
  378. },
  379. {
  380. Name: "labelrelationship_contact_id",
  381. Unique: false,
  382. Columns: []*schema.Column{LabelRelationshipColumns[5]},
  383. },
  384. },
  385. }
  386. // MessagesColumns holds the columns for the "messages" table.
  387. MessagesColumns = []*schema.Column{
  388. {Name: "id", Type: field.TypeInt, Increment: true},
  389. {Name: "wx_wxid", Type: field.TypeString, Nullable: true, Comment: "属主微信id", Default: ""},
  390. {Name: "wxid", Type: field.TypeString, Comment: "微信id 公众号微信ID", Default: ""},
  391. {Name: "content", Type: field.TypeString, Comment: "微信消息内容", Default: ""},
  392. }
  393. // MessagesTable holds the schema information for the "messages" table.
  394. MessagesTable = &schema.Table{
  395. Name: "messages",
  396. Columns: MessagesColumns,
  397. PrimaryKey: []*schema.Column{MessagesColumns[0]},
  398. }
  399. // MessageRecordsColumns holds the columns for the "message_records" table.
  400. MessageRecordsColumns = []*schema.Column{
  401. {Name: "id", Type: field.TypeUint64, Increment: true},
  402. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  403. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  404. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  405. {Name: "bot_wxid", Type: field.TypeString, Comment: "机器人微信 id"},
  406. {Name: "contact_type", Type: field.TypeInt, Comment: "类型:1好友,2群组,3企业微信联系人", Default: 1},
  407. {Name: "contact_wxid", Type: field.TypeString, Comment: "接收方微信 id", Default: ""},
  408. {Name: "content_type", Type: field.TypeInt, Comment: "内容类型 1 文本 2 文件", Default: 1},
  409. {Name: "content", Type: field.TypeString, Comment: "发送内容", Default: ""},
  410. {Name: "meta", Type: field.TypeJSON, Nullable: true, Comment: "元数据"},
  411. {Name: "error_detail", Type: field.TypeString, Comment: "异常原因", Default: ""},
  412. {Name: "send_time", Type: field.TypeTime, Nullable: true, Comment: "发送时间"},
  413. {Name: "source_type", Type: field.TypeInt, Comment: "源类型 1 点发 2 群发 3 SOP", Default: 1},
  414. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  415. {Name: "contact_id", Type: field.TypeUint64, Nullable: true, Comment: "联系人 id"},
  416. {Name: "sub_source_id", Type: field.TypeUint64, Nullable: true, Comment: "次源 ID", Default: 1},
  417. {Name: "source_id", Type: field.TypeUint64, Nullable: true, Comment: "源 ID", Default: 1},
  418. }
  419. // MessageRecordsTable holds the schema information for the "message_records" table.
  420. MessageRecordsTable = &schema.Table{
  421. Name: "message_records",
  422. Columns: MessageRecordsColumns,
  423. PrimaryKey: []*schema.Column{MessageRecordsColumns[0]},
  424. ForeignKeys: []*schema.ForeignKey{
  425. {
  426. Symbol: "message_records_contact_contact_messages",
  427. Columns: []*schema.Column{MessageRecordsColumns[14]},
  428. RefColumns: []*schema.Column{ContactColumns[0]},
  429. OnDelete: schema.SetNull,
  430. },
  431. {
  432. Symbol: "message_records_sop_node_node_messages",
  433. Columns: []*schema.Column{MessageRecordsColumns[15]},
  434. RefColumns: []*schema.Column{SopNodeColumns[0]},
  435. OnDelete: schema.SetNull,
  436. },
  437. {
  438. Symbol: "message_records_sop_stage_stage_messages",
  439. Columns: []*schema.Column{MessageRecordsColumns[16]},
  440. RefColumns: []*schema.Column{SopStageColumns[0]},
  441. OnDelete: schema.SetNull,
  442. },
  443. },
  444. Indexes: []*schema.Index{
  445. {
  446. Name: "messagerecords_source_type",
  447. Unique: false,
  448. Columns: []*schema.Column{MessageRecordsColumns[12]},
  449. },
  450. },
  451. }
  452. // MsgColumns holds the columns for the "msg" table.
  453. MsgColumns = []*schema.Column{
  454. {Name: "id", Type: field.TypeUint64, Increment: true},
  455. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  456. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  457. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  458. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用"},
  459. {Name: "fromwxid", Type: field.TypeString, Nullable: true, Comment: "发送方微信ID"},
  460. {Name: "toid", Type: field.TypeString, Nullable: true, Comment: "接收人微信ID/群ID"},
  461. {Name: "msgtype", Type: field.TypeInt32, Nullable: true, Comment: "消息类型"},
  462. {Name: "msg", Type: field.TypeString, Nullable: true, Comment: "消息"},
  463. {Name: "batch_no", Type: field.TypeString, Nullable: true, Comment: "批次号"},
  464. }
  465. // MsgTable holds the schema information for the "msg" table.
  466. MsgTable = &schema.Table{
  467. Name: "msg",
  468. Columns: MsgColumns,
  469. PrimaryKey: []*schema.Column{MsgColumns[0]},
  470. Indexes: []*schema.Index{
  471. {
  472. Name: "msg_batch_no",
  473. Unique: false,
  474. Columns: []*schema.Column{MsgColumns[9]},
  475. },
  476. {
  477. Name: "msg_id",
  478. Unique: false,
  479. Columns: []*schema.Column{MsgColumns[0]},
  480. },
  481. {
  482. Name: "msg_status",
  483. Unique: false,
  484. Columns: []*schema.Column{MsgColumns[4]},
  485. },
  486. },
  487. }
  488. // ServerColumns holds the columns for the "server" table.
  489. ServerColumns = []*schema.Column{
  490. {Name: "id", Type: field.TypeUint64, Increment: true},
  491. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  492. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  493. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  494. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  495. {Name: "name", Type: field.TypeString, Comment: "名称"},
  496. {Name: "public_ip", Type: field.TypeString, Comment: "公网ip"},
  497. {Name: "private_ip", Type: field.TypeString, Comment: "内网ip"},
  498. {Name: "admin_port", Type: field.TypeString, Comment: "管理端口"},
  499. }
  500. // ServerTable holds the schema information for the "server" table.
  501. ServerTable = &schema.Table{
  502. Name: "server",
  503. Columns: ServerColumns,
  504. PrimaryKey: []*schema.Column{ServerColumns[0]},
  505. Indexes: []*schema.Index{
  506. {
  507. Name: "server_name",
  508. Unique: false,
  509. Columns: []*schema.Column{ServerColumns[5]},
  510. },
  511. {
  512. Name: "server_private_ip",
  513. Unique: false,
  514. Columns: []*schema.Column{ServerColumns[7]},
  515. },
  516. {
  517. Name: "server_public_ip",
  518. Unique: true,
  519. Columns: []*schema.Column{ServerColumns[6]},
  520. },
  521. },
  522. }
  523. // SopNodeColumns holds the columns for the "sop_node" table.
  524. SopNodeColumns = []*schema.Column{
  525. {Name: "id", Type: field.TypeUint64, Increment: true},
  526. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  527. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  528. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  529. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  530. {Name: "parent_id", Type: field.TypeUint64, Comment: "父节点 ID"},
  531. {Name: "name", Type: field.TypeString, Comment: "节点名称", Default: ""},
  532. {Name: "condition_type", Type: field.TypeInt, Comment: "触发条件类型 1 客户回复后触发 2 超时后触发", Default: 1},
  533. {Name: "condition_list", Type: field.TypeJSON, Nullable: true, Comment: "触发语义列表 当为空时则代表用户回复任意内容后触发"},
  534. {Name: "no_reply_condition", Type: field.TypeUint64, Comment: "超时触发时间(分钟)", Default: 0},
  535. {Name: "no_reply_unit", Type: field.TypeString, Comment: "超时触发时间单位", Default: ""},
  536. {Name: "action_message", Type: field.TypeJSON, Nullable: true, Comment: "命中后发送的消息内容"},
  537. {Name: "action_label_add", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要打的标签"},
  538. {Name: "action_label_del", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要移除的标签"},
  539. {Name: "action_forward", Type: field.TypeJSON, Nullable: true, Comment: "命中后转发的消息"},
  540. {Name: "stage_id", Type: field.TypeUint64, Comment: "阶段 ID"},
  541. }
  542. // SopNodeTable holds the schema information for the "sop_node" table.
  543. SopNodeTable = &schema.Table{
  544. Name: "sop_node",
  545. Columns: SopNodeColumns,
  546. PrimaryKey: []*schema.Column{SopNodeColumns[0]},
  547. ForeignKeys: []*schema.ForeignKey{
  548. {
  549. Symbol: "sop_node_sop_stage_stage_nodes",
  550. Columns: []*schema.Column{SopNodeColumns[15]},
  551. RefColumns: []*schema.Column{SopStageColumns[0]},
  552. OnDelete: schema.NoAction,
  553. },
  554. },
  555. Indexes: []*schema.Index{
  556. {
  557. Name: "sopnode_name",
  558. Unique: false,
  559. Columns: []*schema.Column{SopNodeColumns[6]},
  560. },
  561. },
  562. }
  563. // SopStageColumns holds the columns for the "sop_stage" table.
  564. SopStageColumns = []*schema.Column{
  565. {Name: "id", Type: field.TypeUint64, Increment: true},
  566. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  567. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  568. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  569. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  570. {Name: "name", Type: field.TypeString, Comment: "阶段名称", Default: ""},
  571. {Name: "condition_type", Type: field.TypeInt, Comment: "客群筛选条件类型 1 按标签筛选 2 按客户基本信息筛选", Default: 1},
  572. {Name: "condition_operator", Type: field.TypeInt, Comment: "筛选条件关系 1 满足所有条件(and) 2 满足任意条件(or)", Default: 1},
  573. {Name: "condition_list", Type: field.TypeJSON, Comment: "筛选条件列表"},
  574. {Name: "action_message", Type: field.TypeJSON, Nullable: true, Comment: "命中后发送的消息内容"},
  575. {Name: "action_label_add", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要打的标签"},
  576. {Name: "action_label_del", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要移除的标签"},
  577. {Name: "action_forward", Type: field.TypeJSON, Nullable: true, Comment: "命中后转发的消息"},
  578. {Name: "index_sort", Type: field.TypeInt, Nullable: true, Comment: "阶段顺序", Default: 1},
  579. {Name: "task_id", Type: field.TypeUint64, Comment: "SOP 任务 ID"},
  580. }
  581. // SopStageTable holds the schema information for the "sop_stage" table.
  582. SopStageTable = &schema.Table{
  583. Name: "sop_stage",
  584. Columns: SopStageColumns,
  585. PrimaryKey: []*schema.Column{SopStageColumns[0]},
  586. ForeignKeys: []*schema.ForeignKey{
  587. {
  588. Symbol: "sop_stage_sop_task_task_stages",
  589. Columns: []*schema.Column{SopStageColumns[14]},
  590. RefColumns: []*schema.Column{SopTaskColumns[0]},
  591. OnDelete: schema.NoAction,
  592. },
  593. },
  594. Indexes: []*schema.Index{
  595. {
  596. Name: "sopstage_name",
  597. Unique: false,
  598. Columns: []*schema.Column{SopStageColumns[5]},
  599. },
  600. },
  601. }
  602. // SopTaskColumns holds the columns for the "sop_task" table.
  603. SopTaskColumns = []*schema.Column{
  604. {Name: "id", Type: field.TypeUint64, Increment: true},
  605. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  606. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  607. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  608. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  609. {Name: "name", Type: field.TypeString, Comment: "SOP 任务名称"},
  610. {Name: "bot_wxid_list", Type: field.TypeJSON, Nullable: true, Comment: "机器人微信 id 列表"},
  611. {Name: "type", Type: field.TypeInt, Comment: "标签类型:1好友,2群组,3企业微信联系人", Default: 1},
  612. {Name: "plan_start_time", Type: field.TypeTime, Nullable: true, Comment: "任务计划开始时间"},
  613. {Name: "plan_end_time", Type: field.TypeTime, Nullable: true, Comment: "任务计划结束时间"},
  614. {Name: "creator_id", Type: field.TypeString, Nullable: true, Comment: "创建者 id"},
  615. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  616. {Name: "token", Type: field.TypeJSON, Nullable: true, Comment: "Token"},
  617. }
  618. // SopTaskTable holds the schema information for the "sop_task" table.
  619. SopTaskTable = &schema.Table{
  620. Name: "sop_task",
  621. Columns: SopTaskColumns,
  622. PrimaryKey: []*schema.Column{SopTaskColumns[0]},
  623. Indexes: []*schema.Index{
  624. {
  625. Name: "soptask_name",
  626. Unique: false,
  627. Columns: []*schema.Column{SopTaskColumns[5]},
  628. },
  629. {
  630. Name: "soptask_token",
  631. Unique: false,
  632. Columns: []*schema.Column{SopTaskColumns[12]},
  633. },
  634. },
  635. }
  636. // TokenColumns holds the columns for the "token" table.
  637. TokenColumns = []*schema.Column{
  638. {Name: "id", Type: field.TypeUint64, Increment: true},
  639. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  640. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  641. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  642. {Name: "expire_at", Type: field.TypeTime, Nullable: true, Comment: "过期时间"},
  643. {Name: "token", Type: field.TypeString, Nullable: true, Comment: "Token", Default: ""},
  644. {Name: "mac", Type: field.TypeString, Nullable: true, Comment: "Mac地址", Default: ""},
  645. {Name: "organization_id", Type: field.TypeUint64, Comment: "租户ID", Default: 0},
  646. {Name: "custom_agent_base", Type: field.TypeString, Nullable: true, Comment: "定制agent服务地址", Default: ""},
  647. {Name: "custom_agent_key", Type: field.TypeString, Nullable: true, Comment: "定制agent服务密钥", Default: ""},
  648. {Name: "openai_base", Type: field.TypeString, Nullable: true, Comment: "大模型服务地址", Default: ""},
  649. {Name: "openai_key", Type: field.TypeString, Nullable: true, Comment: "大模型服务密钥", Default: ""},
  650. {Name: "agent_id", Type: field.TypeUint64, Comment: "智能体ID", Default: 0},
  651. }
  652. // TokenTable holds the schema information for the "token" table.
  653. TokenTable = &schema.Table{
  654. Name: "token",
  655. Columns: TokenColumns,
  656. PrimaryKey: []*schema.Column{TokenColumns[0]},
  657. ForeignKeys: []*schema.ForeignKey{
  658. {
  659. Symbol: "token_agent_token_agent",
  660. Columns: []*schema.Column{TokenColumns[12]},
  661. RefColumns: []*schema.Column{AgentColumns[0]},
  662. OnDelete: schema.NoAction,
  663. },
  664. },
  665. Indexes: []*schema.Index{
  666. {
  667. Name: "token_token",
  668. Unique: true,
  669. Columns: []*schema.Column{TokenColumns[5]},
  670. },
  671. },
  672. }
  673. // TutorialColumns holds the columns for the "tutorial" table.
  674. TutorialColumns = []*schema.Column{
  675. {Name: "id", Type: field.TypeUint64, Increment: true},
  676. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  677. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  678. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  679. {Name: "index", Type: field.TypeInt, Comment: "index | 序号"},
  680. {Name: "title", Type: field.TypeString, Comment: "title | 标题"},
  681. {Name: "content", Type: field.TypeString, Comment: "content | 内容"},
  682. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  683. {Name: "employee_id", Type: field.TypeUint64, Comment: "employee_id | 员工ID"},
  684. }
  685. // TutorialTable holds the schema information for the "tutorial" table.
  686. TutorialTable = &schema.Table{
  687. Name: "tutorial",
  688. Columns: TutorialColumns,
  689. PrimaryKey: []*schema.Column{TutorialColumns[0]},
  690. ForeignKeys: []*schema.ForeignKey{
  691. {
  692. Symbol: "tutorial_employee_em_tutorial",
  693. Columns: []*schema.Column{TutorialColumns[8]},
  694. RefColumns: []*schema.Column{EmployeeColumns[0]},
  695. OnDelete: schema.NoAction,
  696. },
  697. },
  698. Indexes: []*schema.Index{
  699. {
  700. Name: "tutorial_employee_id",
  701. Unique: false,
  702. Columns: []*schema.Column{TutorialColumns[8]},
  703. },
  704. },
  705. }
  706. // UsageDetailColumns holds the columns for the "usage_detail" table.
  707. UsageDetailColumns = []*schema.Column{
  708. {Name: "id", Type: field.TypeUint64, Increment: true},
  709. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  710. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  711. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  712. {Name: "type", Type: field.TypeInt, Nullable: true, Comment: "1 微信 2 名片", Default: 1},
  713. {Name: "bot_id", Type: field.TypeString, Comment: "微信或名片id", Default: ""},
  714. {Name: "receiver_id", Type: field.TypeString, Comment: "微信id或open_id", Default: ""},
  715. {Name: "app", Type: field.TypeInt, Nullable: true, Comment: "1 cow-basic 2 cow-agent 3 cow-sop 4 mp-card 5 mp-employee", Default: 1},
  716. {Name: "session_id", Type: field.TypeUint64, Nullable: true, Comment: "名片会话id", Default: 1},
  717. {Name: "request", Type: field.TypeString, Comment: "请求内容", Default: ""},
  718. {Name: "response", Type: field.TypeString, Comment: "响应内容", Default: ""},
  719. {Name: "total_tokens", Type: field.TypeUint64, Nullable: true, Comment: "使用token总数", Default: 0},
  720. {Name: "prompt_tokens", Type: field.TypeUint64, Nullable: true, Comment: "请求token数", Default: 0},
  721. {Name: "completion_tokens", Type: field.TypeUint64, Nullable: true, Comment: "响应token数", Default: 0},
  722. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  723. }
  724. // UsageDetailTable holds the schema information for the "usage_detail" table.
  725. UsageDetailTable = &schema.Table{
  726. Name: "usage_detail",
  727. Columns: UsageDetailColumns,
  728. PrimaryKey: []*schema.Column{UsageDetailColumns[0]},
  729. Indexes: []*schema.Index{
  730. {
  731. Name: "usagedetail_bot_id",
  732. Unique: false,
  733. Columns: []*schema.Column{UsageDetailColumns[5]},
  734. },
  735. {
  736. Name: "usagedetail_organization_id",
  737. Unique: false,
  738. Columns: []*schema.Column{UsageDetailColumns[14]},
  739. },
  740. },
  741. }
  742. // UsageStatisticDayColumns holds the columns for the "usage_statistic_day" table.
  743. UsageStatisticDayColumns = []*schema.Column{
  744. {Name: "id", Type: field.TypeUint64, Increment: true},
  745. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  746. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  747. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  748. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  749. {Name: "addtime", Type: field.TypeUint64, Comment: "写入年月日"},
  750. {Name: "type", Type: field.TypeInt, Comment: "1-微信 2-名片"},
  751. {Name: "bot_id", Type: field.TypeString, Nullable: true, Comment: "微信或名片id"},
  752. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构ID"},
  753. {Name: "ai_response", Type: field.TypeUint64, Comment: "AI回复次数"},
  754. {Name: "sop_run", Type: field.TypeUint64, Comment: "SOP运行次数"},
  755. {Name: "total_friend", Type: field.TypeUint64, Comment: "好友总数"},
  756. {Name: "total_group", Type: field.TypeUint64, Comment: "群总数"},
  757. {Name: "account_balance", Type: field.TypeUint64, Comment: "账户余额(单位:分)"},
  758. {Name: "consume_token", Type: field.TypeUint64, Comment: "消耗token数"},
  759. {Name: "active_user", Type: field.TypeUint64, Comment: "活跃用户数"},
  760. {Name: "new_user", Type: field.TypeInt64, Comment: "新增用户数"},
  761. {Name: "label_dist", Type: field.TypeJSON, Comment: "标签分布"},
  762. }
  763. // UsageStatisticDayTable holds the schema information for the "usage_statistic_day" table.
  764. UsageStatisticDayTable = &schema.Table{
  765. Name: "usage_statistic_day",
  766. Columns: UsageStatisticDayColumns,
  767. PrimaryKey: []*schema.Column{UsageStatisticDayColumns[0]},
  768. Indexes: []*schema.Index{
  769. {
  770. Name: "usagestatisticday_addtime",
  771. Unique: false,
  772. Columns: []*schema.Column{UsageStatisticDayColumns[5]},
  773. },
  774. {
  775. Name: "usagestatisticday_bot_id",
  776. Unique: false,
  777. Columns: []*schema.Column{UsageStatisticDayColumns[7]},
  778. },
  779. },
  780. }
  781. // UsageStatisticHourColumns holds the columns for the "usage_statistic_hour" table.
  782. UsageStatisticHourColumns = []*schema.Column{
  783. {Name: "id", Type: field.TypeUint64, Increment: true},
  784. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  785. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  786. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  787. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  788. {Name: "addtime", Type: field.TypeUint64, Comment: "写入小时"},
  789. {Name: "type", Type: field.TypeInt, Comment: "1-微信 2-名片"},
  790. {Name: "bot_id", Type: field.TypeString, Nullable: true, Comment: "微信或名片id"},
  791. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构ID"},
  792. {Name: "ai_response", Type: field.TypeUint64, Comment: "AI回复次数"},
  793. {Name: "sop_run", Type: field.TypeUint64, Comment: "SOP运行次数"},
  794. {Name: "total_friend", Type: field.TypeUint64, Comment: "好友总数"},
  795. {Name: "total_group", Type: field.TypeUint64, Comment: "群总数"},
  796. {Name: "account_balance", Type: field.TypeUint64, Comment: "账户余额(单位:分)"},
  797. {Name: "consume_token", Type: field.TypeUint64, Comment: "消耗token数"},
  798. {Name: "active_user", Type: field.TypeUint64, Comment: "活跃用户数"},
  799. {Name: "new_user", Type: field.TypeInt64, Comment: "新增用户数"},
  800. {Name: "label_dist", Type: field.TypeJSON, Comment: "标签分布"},
  801. }
  802. // UsageStatisticHourTable holds the schema information for the "usage_statistic_hour" table.
  803. UsageStatisticHourTable = &schema.Table{
  804. Name: "usage_statistic_hour",
  805. Columns: UsageStatisticHourColumns,
  806. PrimaryKey: []*schema.Column{UsageStatisticHourColumns[0]},
  807. Indexes: []*schema.Index{
  808. {
  809. Name: "usagestatistichour_addtime",
  810. Unique: false,
  811. Columns: []*schema.Column{UsageStatisticHourColumns[5]},
  812. },
  813. {
  814. Name: "usagestatistichour_bot_id",
  815. Unique: false,
  816. Columns: []*schema.Column{UsageStatisticHourColumns[7]},
  817. },
  818. },
  819. }
  820. // UsageStatisticMonthColumns holds the columns for the "usage_statistic_month" table.
  821. UsageStatisticMonthColumns = []*schema.Column{
  822. {Name: "id", Type: field.TypeUint64, Increment: true},
  823. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  824. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  825. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  826. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  827. {Name: "addtime", Type: field.TypeUint64, Comment: "写入年月"},
  828. {Name: "type", Type: field.TypeInt, Comment: "1-微信 2-名片"},
  829. {Name: "bot_id", Type: field.TypeString, Nullable: true, Comment: "微信或名片id"},
  830. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构ID"},
  831. {Name: "ai_response", Type: field.TypeUint64, Comment: "AI回复次数"},
  832. {Name: "sop_run", Type: field.TypeUint64, Comment: "SOP运行次数"},
  833. {Name: "total_friend", Type: field.TypeUint64, Comment: "好友总数"},
  834. {Name: "total_group", Type: field.TypeUint64, Comment: "群总数"},
  835. {Name: "account_balance", Type: field.TypeUint64, Comment: "账户余额(单位:分)"},
  836. {Name: "consume_token", Type: field.TypeUint64, Comment: "消耗token数"},
  837. {Name: "active_user", Type: field.TypeUint64, Comment: "活跃用户数"},
  838. {Name: "new_user", Type: field.TypeInt64, Comment: "新增用户数"},
  839. {Name: "label_dist", Type: field.TypeJSON, Comment: "标签分布"},
  840. }
  841. // UsageStatisticMonthTable holds the schema information for the "usage_statistic_month" table.
  842. UsageStatisticMonthTable = &schema.Table{
  843. Name: "usage_statistic_month",
  844. Columns: UsageStatisticMonthColumns,
  845. PrimaryKey: []*schema.Column{UsageStatisticMonthColumns[0]},
  846. Indexes: []*schema.Index{
  847. {
  848. Name: "usagestatisticmonth_addtime",
  849. Unique: false,
  850. Columns: []*schema.Column{UsageStatisticMonthColumns[5]},
  851. },
  852. {
  853. Name: "usagestatisticmonth_bot_id",
  854. Unique: false,
  855. Columns: []*schema.Column{UsageStatisticMonthColumns[7]},
  856. },
  857. },
  858. }
  859. // UsageTotalColumns holds the columns for the "usage_total" table.
  860. UsageTotalColumns = []*schema.Column{
  861. {Name: "id", Type: field.TypeUint64, Increment: true},
  862. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  863. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  864. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  865. {Name: "type", Type: field.TypeInt, Nullable: true, Comment: "1 微信 2 名片", Default: 1},
  866. {Name: "bot_id", Type: field.TypeString, Comment: "微信或名片id", Default: ""},
  867. {Name: "total_tokens", Type: field.TypeUint64, Nullable: true, Comment: "使用token总数", Default: 0},
  868. {Name: "start_index", Type: field.TypeUint64, Nullable: true, Comment: "重制后的起始usage_detail 索引", Default: 0},
  869. {Name: "end_index", Type: field.TypeUint64, Nullable: true, Comment: "usage_detail 索引", Default: 0},
  870. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  871. }
  872. // UsageTotalTable holds the schema information for the "usage_total" table.
  873. UsageTotalTable = &schema.Table{
  874. Name: "usage_total",
  875. Columns: UsageTotalColumns,
  876. PrimaryKey: []*schema.Column{UsageTotalColumns[0]},
  877. Indexes: []*schema.Index{
  878. {
  879. Name: "usagetotal_bot_id",
  880. Unique: false,
  881. Columns: []*schema.Column{UsageTotalColumns[5]},
  882. },
  883. {
  884. Name: "usagetotal_organization_id",
  885. Unique: false,
  886. Columns: []*schema.Column{UsageTotalColumns[9]},
  887. },
  888. },
  889. }
  890. // WorkExperienceColumns holds the columns for the "work_experience" table.
  891. WorkExperienceColumns = []*schema.Column{
  892. {Name: "id", Type: field.TypeUint64, Increment: true},
  893. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  894. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  895. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  896. {Name: "start_date", Type: field.TypeTime, Comment: "start_date | 开始时间"},
  897. {Name: "end_date", Type: field.TypeTime, Comment: "end_date | 结束时间"},
  898. {Name: "company", Type: field.TypeString, Comment: "company | 公司名"},
  899. {Name: "experience", Type: field.TypeString, Size: 2147483647, Comment: "experience | 工作内容"},
  900. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  901. {Name: "employee_id", Type: field.TypeUint64, Comment: "employee_id | 员工ID"},
  902. }
  903. // WorkExperienceTable holds the schema information for the "work_experience" table.
  904. WorkExperienceTable = &schema.Table{
  905. Name: "work_experience",
  906. Columns: WorkExperienceColumns,
  907. PrimaryKey: []*schema.Column{WorkExperienceColumns[0]},
  908. ForeignKeys: []*schema.ForeignKey{
  909. {
  910. Symbol: "work_experience_employee_em_work_experiences",
  911. Columns: []*schema.Column{WorkExperienceColumns[9]},
  912. RefColumns: []*schema.Column{EmployeeColumns[0]},
  913. OnDelete: schema.NoAction,
  914. },
  915. },
  916. Indexes: []*schema.Index{
  917. {
  918. Name: "workexperience_employee_id",
  919. Unique: false,
  920. Columns: []*schema.Column{WorkExperienceColumns[9]},
  921. },
  922. },
  923. }
  924. // WpChatroomColumns holds the columns for the "wp_chatroom" table.
  925. WpChatroomColumns = []*schema.Column{
  926. {Name: "id", Type: field.TypeUint64, Increment: true},
  927. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  928. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  929. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  930. {Name: "wx_wxid", Type: field.TypeString, Comment: "所属微信id", Default: ""},
  931. {Name: "chatroom_id", Type: field.TypeString, Comment: "群id", Default: ""},
  932. {Name: "nickname", Type: field.TypeString, Comment: "群昵称", Default: ""},
  933. {Name: "owner", Type: field.TypeString, Comment: "群主", Default: ""},
  934. {Name: "avatar", Type: field.TypeString, Comment: "群头像", Default: ""},
  935. {Name: "member_list", Type: field.TypeJSON, Comment: "群成员"},
  936. }
  937. // WpChatroomTable holds the schema information for the "wp_chatroom" table.
  938. WpChatroomTable = &schema.Table{
  939. Name: "wp_chatroom",
  940. Columns: WpChatroomColumns,
  941. PrimaryKey: []*schema.Column{WpChatroomColumns[0]},
  942. Indexes: []*schema.Index{
  943. {
  944. Name: "wpchatroom_wx_wxid_chatroom_id",
  945. Unique: false,
  946. Columns: []*schema.Column{WpChatroomColumns[4], WpChatroomColumns[5]},
  947. },
  948. },
  949. }
  950. // WpChatroomMemberColumns holds the columns for the "wp_chatroom_member" table.
  951. WpChatroomMemberColumns = []*schema.Column{
  952. {Name: "id", Type: field.TypeUint64, Increment: true},
  953. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  954. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  955. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  956. {Name: "wx_wxid", Type: field.TypeString, Comment: "所属微信id", Default: ""},
  957. {Name: "wxid", Type: field.TypeString, Comment: "微信id", Default: ""},
  958. {Name: "nickname", Type: field.TypeString, Comment: "群昵称", Default: ""},
  959. {Name: "avatar", Type: field.TypeString, Comment: "群头像", Default: ""},
  960. }
  961. // WpChatroomMemberTable holds the schema information for the "wp_chatroom_member" table.
  962. WpChatroomMemberTable = &schema.Table{
  963. Name: "wp_chatroom_member",
  964. Columns: WpChatroomMemberColumns,
  965. PrimaryKey: []*schema.Column{WpChatroomMemberColumns[0]},
  966. Indexes: []*schema.Index{
  967. {
  968. Name: "wpchatroommember_wx_wxid_wxid",
  969. Unique: false,
  970. Columns: []*schema.Column{WpChatroomMemberColumns[4], WpChatroomMemberColumns[5]},
  971. },
  972. },
  973. }
  974. // WxColumns holds the columns for the "wx" table.
  975. WxColumns = []*schema.Column{
  976. {Name: "id", Type: field.TypeUint64, Increment: true},
  977. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  978. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  979. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  980. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  981. {Name: "port", Type: field.TypeString, Comment: "端口号", Default: ""},
  982. {Name: "process_id", Type: field.TypeString, Comment: "进程号", Default: ""},
  983. {Name: "callback", Type: field.TypeString, Comment: "回调地址", Default: ""},
  984. {Name: "wxid", Type: field.TypeString, Comment: "微信id", Default: ""},
  985. {Name: "account", Type: field.TypeString, Comment: "微信账号", Default: ""},
  986. {Name: "nickname", Type: field.TypeString, Comment: "微信昵称", Default: ""},
  987. {Name: "tel", Type: field.TypeString, Comment: "手机号", Default: ""},
  988. {Name: "head_big", Type: field.TypeString, Comment: "微信头像", Default: ""},
  989. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  990. {Name: "api_base", Type: field.TypeString, Nullable: true, Comment: "大模型服务地址", Default: ""},
  991. {Name: "api_key", Type: field.TypeString, Nullable: true, Comment: "大模型服务密钥", Default: ""},
  992. {Name: "allow_list", Type: field.TypeJSON, Comment: "白名单"},
  993. {Name: "group_allow_list", Type: field.TypeJSON, Comment: "群白名单"},
  994. {Name: "block_list", Type: field.TypeJSON, Comment: "黑名单"},
  995. {Name: "group_block_list", Type: field.TypeJSON, Comment: "群黑名单"},
  996. {Name: "agent_id", Type: field.TypeUint64, Comment: "模式ID", Default: 0},
  997. {Name: "agent_base_wx_agent", Type: field.TypeString, Nullable: true},
  998. {Name: "server_id", Type: field.TypeUint64, Nullable: true, Comment: "服务器id", Default: 0},
  999. }
  1000. // WxTable holds the schema information for the "wx" table.
  1001. WxTable = &schema.Table{
  1002. Name: "wx",
  1003. Columns: WxColumns,
  1004. PrimaryKey: []*schema.Column{WxColumns[0]},
  1005. ForeignKeys: []*schema.ForeignKey{
  1006. {
  1007. Symbol: "wx_agent_wx_agent",
  1008. Columns: []*schema.Column{WxColumns[20]},
  1009. RefColumns: []*schema.Column{AgentColumns[0]},
  1010. OnDelete: schema.NoAction,
  1011. },
  1012. {
  1013. Symbol: "wx_agent_base_wx_agent",
  1014. Columns: []*schema.Column{WxColumns[21]},
  1015. RefColumns: []*schema.Column{AgentBaseColumns[0]},
  1016. OnDelete: schema.SetNull,
  1017. },
  1018. {
  1019. Symbol: "wx_server_wxs",
  1020. Columns: []*schema.Column{WxColumns[22]},
  1021. RefColumns: []*schema.Column{ServerColumns[0]},
  1022. OnDelete: schema.SetNull,
  1023. },
  1024. },
  1025. Indexes: []*schema.Index{
  1026. {
  1027. Name: "wx_server_id_port",
  1028. Unique: true,
  1029. Columns: []*schema.Column{WxColumns[22], WxColumns[5]},
  1030. },
  1031. {
  1032. Name: "wx_wxid",
  1033. Unique: true,
  1034. Columns: []*schema.Column{WxColumns[8]},
  1035. },
  1036. {
  1037. Name: "wx_account",
  1038. Unique: false,
  1039. Columns: []*schema.Column{WxColumns[9]},
  1040. },
  1041. {
  1042. Name: "wx_nickname",
  1043. Unique: false,
  1044. Columns: []*schema.Column{WxColumns[10]},
  1045. },
  1046. {
  1047. Name: "wx_tel",
  1048. Unique: false,
  1049. Columns: []*schema.Column{WxColumns[11]},
  1050. },
  1051. },
  1052. }
  1053. // WxCardColumns holds the columns for the "wx_card" table.
  1054. WxCardColumns = []*schema.Column{
  1055. {Name: "id", Type: field.TypeUint64, Increment: true},
  1056. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  1057. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  1058. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  1059. {Name: "user_id", Type: field.TypeUint64, Nullable: true, Comment: "user表ID", Default: 0},
  1060. {Name: "wx_user_id", Type: field.TypeUint64, Nullable: true, Comment: "wx表ID", Default: 0},
  1061. {Name: "avatar", Type: field.TypeString, Comment: "头像", Default: ""},
  1062. {Name: "logo", Type: field.TypeString, Comment: "logo", Default: ""},
  1063. {Name: "name", Type: field.TypeString, Comment: "名称", Default: ""},
  1064. {Name: "company", Type: field.TypeString, Comment: "公司", Default: ""},
  1065. {Name: "address", Type: field.TypeString, Comment: "地址", Default: ""},
  1066. {Name: "phone", Type: field.TypeString, Comment: "手机号", Default: ""},
  1067. {Name: "official_account", Type: field.TypeString, Comment: "公众号", Default: ""},
  1068. {Name: "wechat_account", Type: field.TypeString, Comment: "微信号", Default: ""},
  1069. {Name: "email", Type: field.TypeString, Nullable: true, Comment: "邮箱", Default: ""},
  1070. {Name: "api_base", Type: field.TypeString, Nullable: true, Comment: "fastgpt-base"},
  1071. {Name: "api_key", Type: field.TypeString, Nullable: true, Comment: "fastgpt-key"},
  1072. {Name: "ai_info", Type: field.TypeString, Nullable: true, Comment: "AI信息"},
  1073. {Name: "intro", Type: field.TypeString, Nullable: true, Comment: "个人介绍", Default: ""},
  1074. }
  1075. // WxCardTable holds the schema information for the "wx_card" table.
  1076. WxCardTable = &schema.Table{
  1077. Name: "wx_card",
  1078. Columns: WxCardColumns,
  1079. PrimaryKey: []*schema.Column{WxCardColumns[0]},
  1080. Indexes: []*schema.Index{
  1081. {
  1082. Name: "wxcard_user_id",
  1083. Unique: false,
  1084. Columns: []*schema.Column{WxCardColumns[4]},
  1085. },
  1086. {
  1087. Name: "wxcard_wx_user_id",
  1088. Unique: false,
  1089. Columns: []*schema.Column{WxCardColumns[5]},
  1090. },
  1091. },
  1092. }
  1093. // WxCardUserColumns holds the columns for the "wx_card_user" table.
  1094. WxCardUserColumns = []*schema.Column{
  1095. {Name: "id", Type: field.TypeUint64, Increment: true},
  1096. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  1097. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  1098. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  1099. {Name: "wxid", Type: field.TypeString, Comment: "微信id", Default: ""},
  1100. {Name: "account", Type: field.TypeString, Comment: "微信号", Default: ""},
  1101. {Name: "avatar", Type: field.TypeString, Comment: "头像", Default: ""},
  1102. {Name: "nickname", Type: field.TypeString, Comment: "昵称", Default: ""},
  1103. {Name: "remark", Type: field.TypeString, Comment: "备注名", Default: ""},
  1104. {Name: "phone", Type: field.TypeString, Comment: "手机号", Default: ""},
  1105. {Name: "open_id", Type: field.TypeString, Comment: "OpenID", Default: ""},
  1106. {Name: "union_id", Type: field.TypeString, Comment: "UnionID", Default: ""},
  1107. {Name: "session_key", Type: field.TypeString, Comment: "SessionKey", Default: ""},
  1108. {Name: "is_vip", Type: field.TypeInt, Comment: "是否VIP:0-否 1-是", Default: 0},
  1109. }
  1110. // WxCardUserTable holds the schema information for the "wx_card_user" table.
  1111. WxCardUserTable = &schema.Table{
  1112. Name: "wx_card_user",
  1113. Columns: WxCardUserColumns,
  1114. PrimaryKey: []*schema.Column{WxCardUserColumns[0]},
  1115. Indexes: []*schema.Index{
  1116. {
  1117. Name: "wxcarduser_wxid_open_id",
  1118. Unique: false,
  1119. Columns: []*schema.Column{WxCardUserColumns[4], WxCardUserColumns[10]},
  1120. },
  1121. },
  1122. }
  1123. // WxCardVisitColumns holds the columns for the "wx_card_visit" table.
  1124. WxCardVisitColumns = []*schema.Column{
  1125. {Name: "id", Type: field.TypeUint64, Increment: true},
  1126. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  1127. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  1128. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  1129. {Name: "user_id", Type: field.TypeUint64, Nullable: true, Comment: "user表ID", Default: 0},
  1130. {Name: "bot_id", Type: field.TypeUint64, Comment: "被访ID", Default: 0},
  1131. {Name: "bot_type", Type: field.TypeUint8, Comment: "类型:1-微信 2-小程序 3-智能体", Default: 0},
  1132. }
  1133. // WxCardVisitTable holds the schema information for the "wx_card_visit" table.
  1134. WxCardVisitTable = &schema.Table{
  1135. Name: "wx_card_visit",
  1136. Columns: WxCardVisitColumns,
  1137. PrimaryKey: []*schema.Column{WxCardVisitColumns[0]},
  1138. Indexes: []*schema.Index{
  1139. {
  1140. Name: "wxcardvisit_user_id",
  1141. Unique: false,
  1142. Columns: []*schema.Column{WxCardVisitColumns[4]},
  1143. },
  1144. {
  1145. Name: "wxcardvisit_bot_id_bot_type",
  1146. Unique: false,
  1147. Columns: []*schema.Column{WxCardVisitColumns[5], WxCardVisitColumns[6]},
  1148. },
  1149. },
  1150. }
  1151. // Tables holds all the tables in the schema.
  1152. Tables = []*schema.Table{
  1153. AgentTable,
  1154. AgentBaseTable,
  1155. AliyunAvatarTable,
  1156. BatchMsgTable,
  1157. CategoryTable,
  1158. ChatRecordsTable,
  1159. ChatSessionTable,
  1160. ContactTable,
  1161. EmployeeTable,
  1162. EmployeeConfigTable,
  1163. LabelTable,
  1164. LabelRelationshipTable,
  1165. MessagesTable,
  1166. MessageRecordsTable,
  1167. MsgTable,
  1168. ServerTable,
  1169. SopNodeTable,
  1170. SopStageTable,
  1171. SopTaskTable,
  1172. TokenTable,
  1173. TutorialTable,
  1174. UsageDetailTable,
  1175. UsageStatisticDayTable,
  1176. UsageStatisticHourTable,
  1177. UsageStatisticMonthTable,
  1178. UsageTotalTable,
  1179. WorkExperienceTable,
  1180. WpChatroomTable,
  1181. WpChatroomMemberTable,
  1182. WxTable,
  1183. WxCardTable,
  1184. WxCardUserTable,
  1185. WxCardVisitTable,
  1186. }
  1187. )
  1188. func init() {
  1189. AgentTable.Annotation = &entsql.Annotation{
  1190. Table: "agent",
  1191. }
  1192. AgentBaseTable.Annotation = &entsql.Annotation{
  1193. Table: "agent_base",
  1194. }
  1195. AliyunAvatarTable.Annotation = &entsql.Annotation{
  1196. Table: "aliyun_avatar",
  1197. }
  1198. BatchMsgTable.Annotation = &entsql.Annotation{
  1199. Table: "batch_msg",
  1200. }
  1201. CategoryTable.Annotation = &entsql.Annotation{
  1202. Table: "category",
  1203. }
  1204. ChatRecordsTable.Annotation = &entsql.Annotation{
  1205. Table: "chat_records",
  1206. }
  1207. ChatSessionTable.Annotation = &entsql.Annotation{
  1208. Table: "chat_session",
  1209. }
  1210. ContactTable.Annotation = &entsql.Annotation{
  1211. Table: "contact",
  1212. }
  1213. EmployeeTable.Annotation = &entsql.Annotation{
  1214. Table: "employee",
  1215. }
  1216. EmployeeConfigTable.Annotation = &entsql.Annotation{
  1217. Table: "employee_config",
  1218. }
  1219. LabelTable.Annotation = &entsql.Annotation{
  1220. Table: "label",
  1221. }
  1222. LabelRelationshipTable.ForeignKeys[0].RefTable = ContactTable
  1223. LabelRelationshipTable.ForeignKeys[1].RefTable = LabelTable
  1224. LabelRelationshipTable.Annotation = &entsql.Annotation{
  1225. Table: "label_relationship",
  1226. }
  1227. MessagesTable.Annotation = &entsql.Annotation{
  1228. Table: "messages",
  1229. }
  1230. MessageRecordsTable.ForeignKeys[0].RefTable = ContactTable
  1231. MessageRecordsTable.ForeignKeys[1].RefTable = SopNodeTable
  1232. MessageRecordsTable.ForeignKeys[2].RefTable = SopStageTable
  1233. MessageRecordsTable.Annotation = &entsql.Annotation{
  1234. Table: "message_records",
  1235. }
  1236. MsgTable.Annotation = &entsql.Annotation{
  1237. Table: "msg",
  1238. }
  1239. ServerTable.Annotation = &entsql.Annotation{
  1240. Table: "server",
  1241. }
  1242. SopNodeTable.ForeignKeys[0].RefTable = SopStageTable
  1243. SopNodeTable.Annotation = &entsql.Annotation{
  1244. Table: "sop_node",
  1245. }
  1246. SopStageTable.ForeignKeys[0].RefTable = SopTaskTable
  1247. SopStageTable.Annotation = &entsql.Annotation{
  1248. Table: "sop_stage",
  1249. }
  1250. SopTaskTable.Annotation = &entsql.Annotation{
  1251. Table: "sop_task",
  1252. }
  1253. TokenTable.ForeignKeys[0].RefTable = AgentTable
  1254. TokenTable.Annotation = &entsql.Annotation{
  1255. Table: "token",
  1256. }
  1257. TutorialTable.ForeignKeys[0].RefTable = EmployeeTable
  1258. TutorialTable.Annotation = &entsql.Annotation{
  1259. Table: "tutorial",
  1260. }
  1261. UsageDetailTable.Annotation = &entsql.Annotation{
  1262. Table: "usage_detail",
  1263. }
  1264. UsageStatisticDayTable.Annotation = &entsql.Annotation{
  1265. Table: "usage_statistic_day",
  1266. }
  1267. UsageStatisticHourTable.Annotation = &entsql.Annotation{
  1268. Table: "usage_statistic_hour",
  1269. }
  1270. UsageStatisticMonthTable.Annotation = &entsql.Annotation{
  1271. Table: "usage_statistic_month",
  1272. }
  1273. UsageTotalTable.Annotation = &entsql.Annotation{
  1274. Table: "usage_total",
  1275. }
  1276. WorkExperienceTable.ForeignKeys[0].RefTable = EmployeeTable
  1277. WorkExperienceTable.Annotation = &entsql.Annotation{
  1278. Table: "work_experience",
  1279. }
  1280. WpChatroomTable.Annotation = &entsql.Annotation{
  1281. Table: "wp_chatroom",
  1282. }
  1283. WpChatroomMemberTable.Annotation = &entsql.Annotation{
  1284. Table: "wp_chatroom_member",
  1285. }
  1286. WxTable.ForeignKeys[0].RefTable = AgentTable
  1287. WxTable.ForeignKeys[1].RefTable = AgentBaseTable
  1288. WxTable.ForeignKeys[2].RefTable = ServerTable
  1289. WxTable.Annotation = &entsql.Annotation{
  1290. Table: "wx",
  1291. }
  1292. WxCardTable.Annotation = &entsql.Annotation{
  1293. Table: "wx_card",
  1294. }
  1295. WxCardUserTable.Annotation = &entsql.Annotation{
  1296. Table: "wx_card_user",
  1297. }
  1298. WxCardVisitTable.Annotation = &entsql.Annotation{
  1299. Table: "wx_card_visit",
  1300. }
  1301. }