schema.go 65 KB

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