schema.go 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  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, Size: 1000, Comment: "role | 角色设定"},
  17. {Name: "status", Type: field.TypeInt, Nullable: true, Comment: "status | 状态 1-正常 2-禁用", Default: 1},
  18. {Name: "background", Type: field.TypeString, Nullable: true, Size: 1000, Comment: "background | 背景介绍", Default: ""},
  19. {Name: "examples", Type: field.TypeString, Nullable: true, Size: 5000, 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. // BatchMsgColumns holds the columns for the "batch_msg" table.
  57. BatchMsgColumns = []*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: "status", Type: field.TypeUint8, Nullable: true, Comment: "状态 0 未开始 1 开始发送 2 发送完成 3 发送中止"},
  63. {Name: "batch_no", Type: field.TypeString, Unique: true, Nullable: true, Comment: "批次号"},
  64. {Name: "task_name", Type: field.TypeString, Nullable: true, Comment: "任务名称", Default: ""},
  65. {Name: "fromwxid", Type: field.TypeString, Nullable: true, Comment: "发送方微信ID"},
  66. {Name: "msg", Type: field.TypeString, Nullable: true, Comment: "内容"},
  67. {Name: "tag", Type: field.TypeString, Nullable: true, Comment: "发送规则 all 全部 tag1,tag2 按tag发送"},
  68. {Name: "tagids", Type: field.TypeString, Nullable: true, Comment: "要发送的tagids"},
  69. {Name: "total", Type: field.TypeInt32, Nullable: true, Comment: "总数"},
  70. {Name: "success", Type: field.TypeInt32, Nullable: true, Comment: "成功数量"},
  71. {Name: "fail", Type: field.TypeInt32, Nullable: true, Comment: "失败数量"},
  72. {Name: "start_time", Type: field.TypeTime, Nullable: true, Comment: "开始时间"},
  73. {Name: "stop_time", Type: field.TypeTime, Nullable: true, Comment: "结束时间"},
  74. {Name: "send_time", Type: field.TypeTime, Nullable: true, Comment: "发送时间"},
  75. {Name: "type", Type: field.TypeInt32, Nullable: true, Comment: "发送类型 1-群发消息 2-群发朋友圈"},
  76. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  77. }
  78. // BatchMsgTable holds the schema information for the "batch_msg" table.
  79. BatchMsgTable = &schema.Table{
  80. Name: "batch_msg",
  81. Columns: BatchMsgColumns,
  82. PrimaryKey: []*schema.Column{BatchMsgColumns[0]},
  83. Indexes: []*schema.Index{
  84. {
  85. Name: "batchmsg_batch_no",
  86. Unique: true,
  87. Columns: []*schema.Column{BatchMsgColumns[5]},
  88. },
  89. {
  90. Name: "batchmsg_type",
  91. Unique: false,
  92. Columns: []*schema.Column{BatchMsgColumns[17]},
  93. },
  94. },
  95. }
  96. // CategoryColumns holds the columns for the "category" table.
  97. CategoryColumns = []*schema.Column{
  98. {Name: "id", Type: field.TypeUint64, Increment: true},
  99. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  100. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  101. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  102. {Name: "name", Type: field.TypeString, Size: 255, Comment: "name | 角色名称"},
  103. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  104. }
  105. // CategoryTable holds the schema information for the "category" table.
  106. CategoryTable = &schema.Table{
  107. Name: "category",
  108. Columns: CategoryColumns,
  109. PrimaryKey: []*schema.Column{CategoryColumns[0]},
  110. Indexes: []*schema.Index{
  111. {
  112. Name: "category_organization_id",
  113. Unique: false,
  114. Columns: []*schema.Column{CategoryColumns[5]},
  115. },
  116. },
  117. }
  118. // ChatRecordsColumns holds the columns for the "chat_records" table.
  119. ChatRecordsColumns = []*schema.Column{
  120. {Name: "id", Type: field.TypeUint64, Increment: true},
  121. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  122. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  123. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  124. {Name: "content", Type: field.TypeString, Comment: "内容", Default: ""},
  125. {Name: "content_type", Type: field.TypeUint8, Comment: "内容类型:1-提问 2-回答", Default: 1},
  126. {Name: "session_id", Type: field.TypeUint64, Comment: "会话ID", Default: 0},
  127. {Name: "user_id", Type: field.TypeUint64, Comment: "用户ID", Default: 0},
  128. {Name: "bot_id", Type: field.TypeUint64, Comment: "聊天ID", Default: 0},
  129. {Name: "bot_type", Type: field.TypeUint8, Comment: "类型:1-微信 2-小程序card 3-智能体", Default: 2},
  130. }
  131. // ChatRecordsTable holds the schema information for the "chat_records" table.
  132. ChatRecordsTable = &schema.Table{
  133. Name: "chat_records",
  134. Columns: ChatRecordsColumns,
  135. PrimaryKey: []*schema.Column{ChatRecordsColumns[0]},
  136. Indexes: []*schema.Index{
  137. {
  138. Name: "chatrecords_user_id_bot_id_bot_type",
  139. Unique: false,
  140. Columns: []*schema.Column{ChatRecordsColumns[7], ChatRecordsColumns[8], ChatRecordsColumns[9]},
  141. },
  142. {
  143. Name: "chatrecords_session_id",
  144. Unique: false,
  145. Columns: []*schema.Column{ChatRecordsColumns[6]},
  146. },
  147. },
  148. }
  149. // ChatSessionColumns holds the columns for the "chat_session" table.
  150. ChatSessionColumns = []*schema.Column{
  151. {Name: "id", Type: field.TypeUint64, Increment: true},
  152. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  153. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  154. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  155. {Name: "name", Type: field.TypeString, Comment: "名称", Default: ""},
  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. // ChatSessionTable holds the schema information for the "chat_session" table.
  161. ChatSessionTable = &schema.Table{
  162. Name: "chat_session",
  163. Columns: ChatSessionColumns,
  164. PrimaryKey: []*schema.Column{ChatSessionColumns[0]},
  165. Indexes: []*schema.Index{
  166. {
  167. Name: "chatsession_user_id_bot_id_bot_type",
  168. Unique: false,
  169. Columns: []*schema.Column{ChatSessionColumns[5], ChatSessionColumns[6], ChatSessionColumns[7]},
  170. },
  171. },
  172. }
  173. // ContactColumns holds the columns for the "contact" table.
  174. ContactColumns = []*schema.Column{
  175. {Name: "id", Type: field.TypeUint64, Increment: true},
  176. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  177. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  178. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  179. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  180. {Name: "wx_wxid", Type: field.TypeString, Nullable: true, Comment: "属主微信id", Default: ""},
  181. {Name: "type", Type: field.TypeInt, Nullable: true, Comment: "联系人类型:1好友,2群组,3公众号,4企业微信联系人", Default: 1},
  182. {Name: "wxid", Type: field.TypeString, Comment: "微信id 公众号微信ID", Default: ""},
  183. {Name: "account", Type: field.TypeString, Comment: "微信账号", Default: ""},
  184. {Name: "nickname", Type: field.TypeString, Comment: "微信昵称 群备注名称", Default: ""},
  185. {Name: "markname", Type: field.TypeString, Comment: "备注名", Default: ""},
  186. {Name: "headimg", Type: field.TypeString, Comment: "头像", Default: ""},
  187. {Name: "sex", Type: field.TypeInt, Comment: "性别 0未知 1男 2女", Default: 0},
  188. {Name: "starrole", Type: field.TypeString, Comment: "星标 65/67=星标 1/3=未星标", Default: ""},
  189. {Name: "dontseeit", Type: field.TypeInt, Comment: "不让他看我的朋友圈 0可以看 1不让看", Default: 0},
  190. {Name: "dontseeme", Type: field.TypeInt, Comment: "不看他的朋友圈 0可以看 1不看 1=开启了不看他 128/129=仅聊天", Default: 0},
  191. {Name: "lag", Type: field.TypeString, Comment: "所属标签id清单,多开会用逗号隔开", Default: ""},
  192. {Name: "gid", Type: field.TypeString, Comment: "群组id", Default: ""},
  193. {Name: "gname", Type: field.TypeString, Comment: "群组名称", Default: ""},
  194. {Name: "v3", Type: field.TypeString, Comment: "v3数据", Default: ""},
  195. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  196. }
  197. // ContactTable holds the schema information for the "contact" table.
  198. ContactTable = &schema.Table{
  199. Name: "contact",
  200. Columns: ContactColumns,
  201. PrimaryKey: []*schema.Column{ContactColumns[0]},
  202. Indexes: []*schema.Index{
  203. {
  204. Name: "contact_wx_wxid_wxid",
  205. Unique: true,
  206. Columns: []*schema.Column{ContactColumns[5], ContactColumns[7]},
  207. },
  208. {
  209. Name: "contact_wxid",
  210. Unique: false,
  211. Columns: []*schema.Column{ContactColumns[7]},
  212. },
  213. {
  214. Name: "contact_type",
  215. Unique: false,
  216. Columns: []*schema.Column{ContactColumns[6]},
  217. },
  218. {
  219. Name: "contact_gid",
  220. Unique: false,
  221. Columns: []*schema.Column{ContactColumns[17]},
  222. },
  223. },
  224. }
  225. // EmployeeColumns holds the columns for the "employee" table.
  226. EmployeeColumns = []*schema.Column{
  227. {Name: "id", Type: field.TypeUint64, Increment: true},
  228. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  229. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  230. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  231. {Name: "title", Type: field.TypeString, Size: 255, Comment: "title | 标题"},
  232. {Name: "avatar", Type: field.TypeString, Size: 1000, Comment: "avatar | 头像"},
  233. {Name: "tags", Type: field.TypeString, Size: 255, Comment: "tags | 个人标签"},
  234. {Name: "hire_count", Type: field.TypeInt, Comment: "hire_count | 被雇佣次数", Default: 0},
  235. {Name: "service_count", Type: field.TypeInt, Comment: "service_count | 已服务次数", Default: 0},
  236. {Name: "achievement_count", Type: field.TypeInt, Comment: "achievement_count | 业绩单数", Default: 0},
  237. {Name: "intro", Type: field.TypeString, Size: 1000, Comment: "intro | 个人介绍", Default: ""},
  238. {Name: "estimate", Type: field.TypeString, Size: 1000, Comment: "estimate | 自我评价", Default: ""},
  239. {Name: "skill", Type: field.TypeString, Size: 1000, Comment: "skill | 技能卡", Default: ""},
  240. {Name: "ability_type", Type: field.TypeString, Comment: "ability_type | 能力类型", Default: ""},
  241. {Name: "scene", Type: field.TypeString, Comment: "scene | 使用场景", Default: ""},
  242. {Name: "switch_in", Type: field.TypeString, Comment: "switch_in | 支持介入", Default: ""},
  243. {Name: "video_url", Type: field.TypeString, Size: 1000, Comment: "video_url | 视频地址", Default: ""},
  244. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  245. {Name: "category_id", Type: field.TypeUint64, Comment: "category_id | 分类ID"},
  246. {Name: "api_base", Type: field.TypeString, Comment: "api_base", Default: ""},
  247. {Name: "api_key", Type: field.TypeString, Comment: "api_key", Default: ""},
  248. }
  249. // EmployeeTable holds the schema information for the "employee" table.
  250. EmployeeTable = &schema.Table{
  251. Name: "employee",
  252. Columns: EmployeeColumns,
  253. PrimaryKey: []*schema.Column{EmployeeColumns[0]},
  254. Indexes: []*schema.Index{
  255. {
  256. Name: "employee_organization_id",
  257. Unique: false,
  258. Columns: []*schema.Column{EmployeeColumns[17]},
  259. },
  260. },
  261. }
  262. // EmployeeConfigColumns holds the columns for the "employee_config" table.
  263. EmployeeConfigColumns = []*schema.Column{
  264. {Name: "id", Type: field.TypeUint64, Increment: true},
  265. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  266. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  267. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  268. {Name: "stype", Type: field.TypeString, Comment: "类型:scene-场景 switch_in-接入方式", Default: ""},
  269. {Name: "title", Type: field.TypeString, Comment: "标题", Default: ""},
  270. {Name: "photo", Type: field.TypeString, Comment: "图片地址", Default: ""},
  271. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  272. }
  273. // EmployeeConfigTable holds the schema information for the "employee_config" table.
  274. EmployeeConfigTable = &schema.Table{
  275. Name: "employee_config",
  276. Columns: EmployeeConfigColumns,
  277. PrimaryKey: []*schema.Column{EmployeeConfigColumns[0]},
  278. Indexes: []*schema.Index{
  279. {
  280. Name: "employeeconfig_stype",
  281. Unique: false,
  282. Columns: []*schema.Column{EmployeeConfigColumns[4]},
  283. },
  284. },
  285. }
  286. // LabelColumns holds the columns for the "label" table.
  287. LabelColumns = []*schema.Column{
  288. {Name: "id", Type: field.TypeUint64, Increment: true},
  289. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  290. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  291. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  292. {Name: "type", Type: field.TypeInt, Comment: "标签类型:1好友,2群组,3公众号,4企业微信联系人", Default: 1},
  293. {Name: "name", Type: field.TypeString, Comment: "标签名称", Default: ""},
  294. {Name: "from", Type: field.TypeInt, Comment: "标签来源:1后台创建 2个微同步", Default: 1},
  295. {Name: "mode", Type: field.TypeInt, Comment: "标签模式:1动态 2静态", Default: 1},
  296. {Name: "conditions", Type: field.TypeString, Nullable: true, Comment: "标签的触达条件", Default: ""},
  297. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  298. }
  299. // LabelTable holds the schema information for the "label" table.
  300. LabelTable = &schema.Table{
  301. Name: "label",
  302. Columns: LabelColumns,
  303. PrimaryKey: []*schema.Column{LabelColumns[0]},
  304. Indexes: []*schema.Index{
  305. {
  306. Name: "label_name_from_mode",
  307. Unique: true,
  308. Columns: []*schema.Column{LabelColumns[5], LabelColumns[6], LabelColumns[7]},
  309. },
  310. },
  311. }
  312. // LabelRelationshipColumns holds the columns for the "label_relationship" table.
  313. LabelRelationshipColumns = []*schema.Column{
  314. {Name: "id", Type: field.TypeUint64, Increment: true},
  315. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  316. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  317. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  318. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  319. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  320. {Name: "contact_id", Type: field.TypeUint64, Comment: "联系人 ID", Default: 1},
  321. {Name: "label_id", Type: field.TypeUint64, Comment: "标签 ID", Default: 1},
  322. }
  323. // LabelRelationshipTable holds the schema information for the "label_relationship" table.
  324. LabelRelationshipTable = &schema.Table{
  325. Name: "label_relationship",
  326. Columns: LabelRelationshipColumns,
  327. PrimaryKey: []*schema.Column{LabelRelationshipColumns[0]},
  328. ForeignKeys: []*schema.ForeignKey{
  329. {
  330. Symbol: "label_relationship_contact_contact_relationships",
  331. Columns: []*schema.Column{LabelRelationshipColumns[6]},
  332. RefColumns: []*schema.Column{ContactColumns[0]},
  333. OnDelete: schema.NoAction,
  334. },
  335. {
  336. Symbol: "label_relationship_label_label_relationships",
  337. Columns: []*schema.Column{LabelRelationshipColumns[7]},
  338. RefColumns: []*schema.Column{LabelColumns[0]},
  339. OnDelete: schema.NoAction,
  340. },
  341. },
  342. Indexes: []*schema.Index{
  343. {
  344. Name: "labelrelationship_label_id",
  345. Unique: false,
  346. Columns: []*schema.Column{LabelRelationshipColumns[7]},
  347. },
  348. {
  349. Name: "labelrelationship_contact_id",
  350. Unique: false,
  351. Columns: []*schema.Column{LabelRelationshipColumns[6]},
  352. },
  353. },
  354. }
  355. // MessagesColumns holds the columns for the "messages" table.
  356. MessagesColumns = []*schema.Column{
  357. {Name: "id", Type: field.TypeInt, Increment: true},
  358. {Name: "wx_wxid", Type: field.TypeString, Nullable: true, Comment: "属主微信id", Default: ""},
  359. {Name: "wxid", Type: field.TypeString, Comment: "微信id 公众号微信ID", Default: ""},
  360. {Name: "content", Type: field.TypeString, Comment: "微信消息内容", Default: ""},
  361. }
  362. // MessagesTable holds the schema information for the "messages" table.
  363. MessagesTable = &schema.Table{
  364. Name: "messages",
  365. Columns: MessagesColumns,
  366. PrimaryKey: []*schema.Column{MessagesColumns[0]},
  367. }
  368. // MessageRecordsColumns holds the columns for the "message_records" table.
  369. MessageRecordsColumns = []*schema.Column{
  370. {Name: "id", Type: field.TypeUint64, Increment: true},
  371. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  372. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  373. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  374. {Name: "bot_wxid", Type: field.TypeString, Comment: "机器人微信 id"},
  375. {Name: "contact_type", Type: field.TypeInt, Comment: "类型:1好友,2群组,3企业微信联系人", Default: 1},
  376. {Name: "contact_wxid", Type: field.TypeString, Comment: "接收方微信 id", Default: ""},
  377. {Name: "content_type", Type: field.TypeInt, Comment: "内容类型 1 文本 2 文件", Default: 1},
  378. {Name: "content", Type: field.TypeString, Comment: "发送内容", Default: ""},
  379. {Name: "meta", Type: field.TypeJSON, Nullable: true, Comment: "元数据"},
  380. {Name: "error_detail", Type: field.TypeString, Comment: "异常原因", Default: ""},
  381. {Name: "send_time", Type: field.TypeTime, Nullable: true, Comment: "发送时间"},
  382. {Name: "source_type", Type: field.TypeInt, Comment: "源类型 1 点发 2 群发 3 SOP", Default: 1},
  383. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  384. {Name: "contact_id", Type: field.TypeUint64, Nullable: true, Comment: "联系人 id"},
  385. {Name: "sub_source_id", Type: field.TypeUint64, Nullable: true, Comment: "次源 ID", Default: 1},
  386. {Name: "source_id", Type: field.TypeUint64, Nullable: true, Comment: "源 ID", Default: 1},
  387. }
  388. // MessageRecordsTable holds the schema information for the "message_records" table.
  389. MessageRecordsTable = &schema.Table{
  390. Name: "message_records",
  391. Columns: MessageRecordsColumns,
  392. PrimaryKey: []*schema.Column{MessageRecordsColumns[0]},
  393. ForeignKeys: []*schema.ForeignKey{
  394. {
  395. Symbol: "message_records_contact_contact_messages",
  396. Columns: []*schema.Column{MessageRecordsColumns[14]},
  397. RefColumns: []*schema.Column{ContactColumns[0]},
  398. OnDelete: schema.SetNull,
  399. },
  400. {
  401. Symbol: "message_records_sop_node_node_messages",
  402. Columns: []*schema.Column{MessageRecordsColumns[15]},
  403. RefColumns: []*schema.Column{SopNodeColumns[0]},
  404. OnDelete: schema.SetNull,
  405. },
  406. {
  407. Symbol: "message_records_sop_stage_stage_messages",
  408. Columns: []*schema.Column{MessageRecordsColumns[16]},
  409. RefColumns: []*schema.Column{SopStageColumns[0]},
  410. OnDelete: schema.SetNull,
  411. },
  412. },
  413. Indexes: []*schema.Index{
  414. {
  415. Name: "messagerecords_source_type",
  416. Unique: false,
  417. Columns: []*schema.Column{MessageRecordsColumns[12]},
  418. },
  419. },
  420. }
  421. // MsgColumns holds the columns for the "msg" table.
  422. MsgColumns = []*schema.Column{
  423. {Name: "id", Type: field.TypeUint64, Increment: true},
  424. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  425. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  426. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  427. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用"},
  428. {Name: "fromwxid", Type: field.TypeString, Nullable: true, Comment: "发送方微信ID"},
  429. {Name: "toid", Type: field.TypeString, Nullable: true, Comment: "接收人微信ID/群ID"},
  430. {Name: "msgtype", Type: field.TypeInt32, Nullable: true, Comment: "消息类型"},
  431. {Name: "msg", Type: field.TypeString, Nullable: true, Comment: "消息"},
  432. {Name: "batch_no", Type: field.TypeString, Nullable: true, Comment: "批次号"},
  433. }
  434. // MsgTable holds the schema information for the "msg" table.
  435. MsgTable = &schema.Table{
  436. Name: "msg",
  437. Columns: MsgColumns,
  438. PrimaryKey: []*schema.Column{MsgColumns[0]},
  439. Indexes: []*schema.Index{
  440. {
  441. Name: "msg_batch_no",
  442. Unique: false,
  443. Columns: []*schema.Column{MsgColumns[9]},
  444. },
  445. {
  446. Name: "msg_id",
  447. Unique: false,
  448. Columns: []*schema.Column{MsgColumns[0]},
  449. },
  450. {
  451. Name: "msg_status",
  452. Unique: false,
  453. Columns: []*schema.Column{MsgColumns[4]},
  454. },
  455. },
  456. }
  457. // ServerColumns holds the columns for the "server" table.
  458. ServerColumns = []*schema.Column{
  459. {Name: "id", Type: field.TypeUint64, Increment: true},
  460. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  461. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  462. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  463. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  464. {Name: "name", Type: field.TypeString, Comment: "名称"},
  465. {Name: "public_ip", Type: field.TypeString, Comment: "公网ip"},
  466. {Name: "private_ip", Type: field.TypeString, Comment: "内网ip"},
  467. {Name: "admin_port", Type: field.TypeString, Comment: "管理端口"},
  468. }
  469. // ServerTable holds the schema information for the "server" table.
  470. ServerTable = &schema.Table{
  471. Name: "server",
  472. Columns: ServerColumns,
  473. PrimaryKey: []*schema.Column{ServerColumns[0]},
  474. Indexes: []*schema.Index{
  475. {
  476. Name: "server_name",
  477. Unique: false,
  478. Columns: []*schema.Column{ServerColumns[5]},
  479. },
  480. {
  481. Name: "server_private_ip",
  482. Unique: false,
  483. Columns: []*schema.Column{ServerColumns[7]},
  484. },
  485. {
  486. Name: "server_public_ip",
  487. Unique: true,
  488. Columns: []*schema.Column{ServerColumns[6]},
  489. },
  490. },
  491. }
  492. // SopNodeColumns holds the columns for the "sop_node" table.
  493. SopNodeColumns = []*schema.Column{
  494. {Name: "id", Type: field.TypeUint64, Increment: true},
  495. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  496. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  497. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  498. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  499. {Name: "parent_id", Type: field.TypeUint64, Comment: "父节点 ID"},
  500. {Name: "name", Type: field.TypeString, Comment: "节点名称", Default: ""},
  501. {Name: "condition_type", Type: field.TypeInt, Comment: "触发条件类型 1 客户回复后触发 2 超时后触发", Default: 1},
  502. {Name: "condition_list", Type: field.TypeJSON, Nullable: true, Comment: "触发语义列表 当为空时则代表用户回复任意内容后触发"},
  503. {Name: "no_reply_condition", Type: field.TypeUint64, Comment: "超时触发时间(分钟)", Default: 0},
  504. {Name: "no_reply_unit", Type: field.TypeString, Comment: "超时触发时间单位", Default: ""},
  505. {Name: "action_message", Type: field.TypeJSON, Nullable: true, Comment: "命中后发送的消息内容"},
  506. {Name: "action_label_add", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要打的标签"},
  507. {Name: "action_label_del", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要移除的标签"},
  508. {Name: "action_forward", Type: field.TypeJSON, Nullable: true, Comment: "命中后转发的消息"},
  509. {Name: "stage_id", Type: field.TypeUint64, Comment: "阶段 ID"},
  510. }
  511. // SopNodeTable holds the schema information for the "sop_node" table.
  512. SopNodeTable = &schema.Table{
  513. Name: "sop_node",
  514. Columns: SopNodeColumns,
  515. PrimaryKey: []*schema.Column{SopNodeColumns[0]},
  516. ForeignKeys: []*schema.ForeignKey{
  517. {
  518. Symbol: "sop_node_sop_stage_stage_nodes",
  519. Columns: []*schema.Column{SopNodeColumns[15]},
  520. RefColumns: []*schema.Column{SopStageColumns[0]},
  521. OnDelete: schema.NoAction,
  522. },
  523. },
  524. Indexes: []*schema.Index{
  525. {
  526. Name: "sopnode_name",
  527. Unique: false,
  528. Columns: []*schema.Column{SopNodeColumns[6]},
  529. },
  530. },
  531. }
  532. // SopStageColumns holds the columns for the "sop_stage" table.
  533. SopStageColumns = []*schema.Column{
  534. {Name: "id", Type: field.TypeUint64, Increment: true},
  535. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  536. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  537. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  538. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  539. {Name: "name", Type: field.TypeString, Comment: "阶段名称", Default: ""},
  540. {Name: "condition_type", Type: field.TypeInt, Comment: "客群筛选条件类型 1 按标签筛选 2 按客户基本信息筛选", Default: 1},
  541. {Name: "condition_operator", Type: field.TypeInt, Comment: "筛选条件关系 1 满足所有条件(and) 2 满足任意条件(or)", Default: 1},
  542. {Name: "condition_list", Type: field.TypeJSON, Comment: "筛选条件列表"},
  543. {Name: "action_message", Type: field.TypeJSON, Nullable: true, Comment: "命中后发送的消息内容"},
  544. {Name: "action_label_add", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要打的标签"},
  545. {Name: "action_label_del", Type: field.TypeJSON, Nullable: true, Comment: "命中后需要移除的标签"},
  546. {Name: "action_forward", Type: field.TypeJSON, Nullable: true, Comment: "命中后转发的消息"},
  547. {Name: "index_sort", Type: field.TypeInt, Nullable: true, Comment: "阶段顺序", Default: 1},
  548. {Name: "task_id", Type: field.TypeUint64, Comment: "SOP 任务 ID"},
  549. }
  550. // SopStageTable holds the schema information for the "sop_stage" table.
  551. SopStageTable = &schema.Table{
  552. Name: "sop_stage",
  553. Columns: SopStageColumns,
  554. PrimaryKey: []*schema.Column{SopStageColumns[0]},
  555. ForeignKeys: []*schema.ForeignKey{
  556. {
  557. Symbol: "sop_stage_sop_task_task_stages",
  558. Columns: []*schema.Column{SopStageColumns[14]},
  559. RefColumns: []*schema.Column{SopTaskColumns[0]},
  560. OnDelete: schema.NoAction,
  561. },
  562. },
  563. Indexes: []*schema.Index{
  564. {
  565. Name: "sopstage_name",
  566. Unique: false,
  567. Columns: []*schema.Column{SopStageColumns[5]},
  568. },
  569. },
  570. }
  571. // SopTaskColumns holds the columns for the "sop_task" table.
  572. SopTaskColumns = []*schema.Column{
  573. {Name: "id", Type: field.TypeUint64, Increment: true},
  574. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  575. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  576. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  577. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  578. {Name: "name", Type: field.TypeString, Comment: "SOP 任务名称"},
  579. {Name: "bot_wxid_list", Type: field.TypeJSON, Nullable: true, Comment: "机器人微信 id 列表"},
  580. {Name: "type", Type: field.TypeInt, Comment: "标签类型:1好友,2群组,3企业微信联系人", Default: 1},
  581. {Name: "plan_start_time", Type: field.TypeTime, Nullable: true, Comment: "任务计划开始时间"},
  582. {Name: "plan_end_time", Type: field.TypeTime, Nullable: true, Comment: "任务计划结束时间"},
  583. {Name: "creator_id", Type: field.TypeString, Nullable: true, Comment: "创建者 id"},
  584. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  585. }
  586. // SopTaskTable holds the schema information for the "sop_task" table.
  587. SopTaskTable = &schema.Table{
  588. Name: "sop_task",
  589. Columns: SopTaskColumns,
  590. PrimaryKey: []*schema.Column{SopTaskColumns[0]},
  591. Indexes: []*schema.Index{
  592. {
  593. Name: "soptask_name",
  594. Unique: false,
  595. Columns: []*schema.Column{SopTaskColumns[5]},
  596. },
  597. },
  598. }
  599. // TokenColumns holds the columns for the "token" table.
  600. TokenColumns = []*schema.Column{
  601. {Name: "id", Type: field.TypeUint64, Increment: true},
  602. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  603. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  604. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  605. {Name: "expire_at", Type: field.TypeTime, Nullable: true, Comment: "过期时间"},
  606. {Name: "token", Type: field.TypeString, Nullable: true, Comment: "Token", Default: ""},
  607. {Name: "mac", Type: field.TypeString, Comment: "Mac地址", Default: ""},
  608. }
  609. // TokenTable holds the schema information for the "token" table.
  610. TokenTable = &schema.Table{
  611. Name: "token",
  612. Columns: TokenColumns,
  613. PrimaryKey: []*schema.Column{TokenColumns[0]},
  614. Indexes: []*schema.Index{
  615. {
  616. Name: "token_token",
  617. Unique: true,
  618. Columns: []*schema.Column{TokenColumns[5]},
  619. },
  620. },
  621. }
  622. // TutorialColumns holds the columns for the "tutorial" table.
  623. TutorialColumns = []*schema.Column{
  624. {Name: "id", Type: field.TypeUint64, Increment: true},
  625. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  626. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  627. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  628. {Name: "index", Type: field.TypeInt, Comment: "index | 序号"},
  629. {Name: "title", Type: field.TypeString, Comment: "title | 标题"},
  630. {Name: "content", Type: field.TypeString, Comment: "content | 内容"},
  631. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  632. {Name: "employee_id", Type: field.TypeUint64, Comment: "employee_id | 员工ID"},
  633. }
  634. // TutorialTable holds the schema information for the "tutorial" table.
  635. TutorialTable = &schema.Table{
  636. Name: "tutorial",
  637. Columns: TutorialColumns,
  638. PrimaryKey: []*schema.Column{TutorialColumns[0]},
  639. ForeignKeys: []*schema.ForeignKey{
  640. {
  641. Symbol: "tutorial_employee_em_tutorial",
  642. Columns: []*schema.Column{TutorialColumns[8]},
  643. RefColumns: []*schema.Column{EmployeeColumns[0]},
  644. OnDelete: schema.NoAction,
  645. },
  646. },
  647. Indexes: []*schema.Index{
  648. {
  649. Name: "tutorial_employee_id",
  650. Unique: false,
  651. Columns: []*schema.Column{TutorialColumns[8]},
  652. },
  653. },
  654. }
  655. // WorkExperienceColumns holds the columns for the "work_experience" table.
  656. WorkExperienceColumns = []*schema.Column{
  657. {Name: "id", Type: field.TypeUint64, Increment: true},
  658. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  659. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  660. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  661. {Name: "start_date", Type: field.TypeTime, Comment: "start_date | 开始时间"},
  662. {Name: "end_date", Type: field.TypeTime, Comment: "end_date | 结束时间"},
  663. {Name: "company", Type: field.TypeString, Comment: "company | 公司名"},
  664. {Name: "experience", Type: field.TypeString, Size: 2147483647, Comment: "experience | 工作内容"},
  665. {Name: "organization_id", Type: field.TypeUint64, Comment: "organization_id | 租户ID"},
  666. {Name: "employee_id", Type: field.TypeUint64, Comment: "employee_id | 员工ID"},
  667. }
  668. // WorkExperienceTable holds the schema information for the "work_experience" table.
  669. WorkExperienceTable = &schema.Table{
  670. Name: "work_experience",
  671. Columns: WorkExperienceColumns,
  672. PrimaryKey: []*schema.Column{WorkExperienceColumns[0]},
  673. ForeignKeys: []*schema.ForeignKey{
  674. {
  675. Symbol: "work_experience_employee_em_work_experiences",
  676. Columns: []*schema.Column{WorkExperienceColumns[9]},
  677. RefColumns: []*schema.Column{EmployeeColumns[0]},
  678. OnDelete: schema.NoAction,
  679. },
  680. },
  681. Indexes: []*schema.Index{
  682. {
  683. Name: "workexperience_employee_id",
  684. Unique: false,
  685. Columns: []*schema.Column{WorkExperienceColumns[9]},
  686. },
  687. },
  688. }
  689. // WxColumns holds the columns for the "wx" table.
  690. WxColumns = []*schema.Column{
  691. {Name: "id", Type: field.TypeUint64, Increment: true},
  692. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  693. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  694. {Name: "status", Type: field.TypeUint8, Nullable: true, Comment: "Status 1: normal 2: ban | 状态 1 正常 2 禁用", Default: 1},
  695. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  696. {Name: "port", Type: field.TypeString, Comment: "端口号", Default: ""},
  697. {Name: "process_id", Type: field.TypeString, Comment: "进程号", Default: ""},
  698. {Name: "callback", Type: field.TypeString, Comment: "回调地址", Default: ""},
  699. {Name: "wxid", Type: field.TypeString, Comment: "微信id", Default: ""},
  700. {Name: "account", Type: field.TypeString, Comment: "微信账号", Default: ""},
  701. {Name: "nickname", Type: field.TypeString, Comment: "微信昵称", Default: ""},
  702. {Name: "tel", Type: field.TypeString, Comment: "手机号", Default: ""},
  703. {Name: "head_big", Type: field.TypeString, Comment: "微信头像", Default: ""},
  704. {Name: "organization_id", Type: field.TypeUint64, Nullable: true, Comment: "机构 ID", Default: 1},
  705. {Name: "api_base", Type: field.TypeString, Nullable: true, Comment: "大模型服务地址", Default: ""},
  706. {Name: "api_key", Type: field.TypeString, Nullable: true, Comment: "大模型服务密钥", Default: ""},
  707. {Name: "allow_list", Type: field.TypeJSON, Comment: "白名单"},
  708. {Name: "group_allow_list", Type: field.TypeJSON, Comment: "群白名单"},
  709. {Name: "block_list", Type: field.TypeJSON, Comment: "黑名单"},
  710. {Name: "group_block_list", Type: field.TypeJSON, Comment: "群黑名单"},
  711. {Name: "agent_id", Type: field.TypeUint64, Comment: "模式ID", Default: 0},
  712. {Name: "agent_base_wx_agent", Type: field.TypeString, Nullable: true},
  713. {Name: "server_id", Type: field.TypeUint64, Nullable: true, Comment: "服务器id", Default: 0},
  714. }
  715. // WxTable holds the schema information for the "wx" table.
  716. WxTable = &schema.Table{
  717. Name: "wx",
  718. Columns: WxColumns,
  719. PrimaryKey: []*schema.Column{WxColumns[0]},
  720. ForeignKeys: []*schema.ForeignKey{
  721. {
  722. Symbol: "wx_agent_wx_agent",
  723. Columns: []*schema.Column{WxColumns[20]},
  724. RefColumns: []*schema.Column{AgentColumns[0]},
  725. OnDelete: schema.NoAction,
  726. },
  727. {
  728. Symbol: "wx_agent_base_wx_agent",
  729. Columns: []*schema.Column{WxColumns[21]},
  730. RefColumns: []*schema.Column{AgentBaseColumns[0]},
  731. OnDelete: schema.SetNull,
  732. },
  733. {
  734. Symbol: "wx_server_wxs",
  735. Columns: []*schema.Column{WxColumns[22]},
  736. RefColumns: []*schema.Column{ServerColumns[0]},
  737. OnDelete: schema.SetNull,
  738. },
  739. },
  740. Indexes: []*schema.Index{
  741. {
  742. Name: "wx_server_id_port",
  743. Unique: true,
  744. Columns: []*schema.Column{WxColumns[22], WxColumns[5]},
  745. },
  746. {
  747. Name: "wx_wxid",
  748. Unique: true,
  749. Columns: []*schema.Column{WxColumns[8]},
  750. },
  751. {
  752. Name: "wx_account",
  753. Unique: false,
  754. Columns: []*schema.Column{WxColumns[9]},
  755. },
  756. {
  757. Name: "wx_nickname",
  758. Unique: false,
  759. Columns: []*schema.Column{WxColumns[10]},
  760. },
  761. {
  762. Name: "wx_tel",
  763. Unique: false,
  764. Columns: []*schema.Column{WxColumns[11]},
  765. },
  766. },
  767. }
  768. // WxCardColumns holds the columns for the "wx_card" table.
  769. WxCardColumns = []*schema.Column{
  770. {Name: "id", Type: field.TypeUint64, Increment: true},
  771. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  772. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  773. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  774. {Name: "user_id", Type: field.TypeUint64, Nullable: true, Comment: "user表ID", Default: 0},
  775. {Name: "wx_user_id", Type: field.TypeUint64, Nullable: true, Comment: "wx表ID", Default: 0},
  776. {Name: "avatar", Type: field.TypeString, Comment: "头像", Default: ""},
  777. {Name: "logo", Type: field.TypeString, Comment: "logo", Default: ""},
  778. {Name: "name", Type: field.TypeString, Comment: "名称", Default: ""},
  779. {Name: "company", Type: field.TypeString, Comment: "公司", Default: ""},
  780. {Name: "address", Type: field.TypeString, Comment: "地址", Default: ""},
  781. {Name: "phone", Type: field.TypeString, Comment: "手机号", Default: ""},
  782. {Name: "official_account", Type: field.TypeString, Comment: "公众号", Default: ""},
  783. {Name: "wechat_account", Type: field.TypeString, Comment: "微信号", Default: ""},
  784. {Name: "email", Type: field.TypeString, Nullable: true, Comment: "邮箱", Default: ""},
  785. {Name: "api_base", Type: field.TypeString, Nullable: true, Comment: "fastgpt-base"},
  786. {Name: "api_key", Type: field.TypeString, Nullable: true, Comment: "fastgpt-key"},
  787. {Name: "ai_info", Type: field.TypeString, Nullable: true, Comment: "AI信息"},
  788. {Name: "intro", Type: field.TypeString, Nullable: true, Comment: "个人介绍", Default: ""},
  789. }
  790. // WxCardTable holds the schema information for the "wx_card" table.
  791. WxCardTable = &schema.Table{
  792. Name: "wx_card",
  793. Columns: WxCardColumns,
  794. PrimaryKey: []*schema.Column{WxCardColumns[0]},
  795. Indexes: []*schema.Index{
  796. {
  797. Name: "wxcard_user_id",
  798. Unique: false,
  799. Columns: []*schema.Column{WxCardColumns[4]},
  800. },
  801. {
  802. Name: "wxcard_wx_user_id",
  803. Unique: false,
  804. Columns: []*schema.Column{WxCardColumns[5]},
  805. },
  806. },
  807. }
  808. // WxCardUserColumns holds the columns for the "wx_card_user" table.
  809. WxCardUserColumns = []*schema.Column{
  810. {Name: "id", Type: field.TypeUint64, Increment: true},
  811. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  812. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  813. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  814. {Name: "wxid", Type: field.TypeString, Comment: "微信id", Default: ""},
  815. {Name: "account", Type: field.TypeString, Comment: "微信号", Default: ""},
  816. {Name: "avatar", Type: field.TypeString, Comment: "头像", Default: ""},
  817. {Name: "nickname", Type: field.TypeString, Comment: "昵称", Default: ""},
  818. {Name: "remark", Type: field.TypeString, Comment: "备注名", Default: ""},
  819. {Name: "phone", Type: field.TypeString, Comment: "手机号", Default: ""},
  820. {Name: "open_id", Type: field.TypeString, Comment: "OpenID", Default: ""},
  821. {Name: "union_id", Type: field.TypeString, Comment: "UnionID", Default: ""},
  822. {Name: "session_key", Type: field.TypeString, Comment: "SessionKey", Default: ""},
  823. }
  824. // WxCardUserTable holds the schema information for the "wx_card_user" table.
  825. WxCardUserTable = &schema.Table{
  826. Name: "wx_card_user",
  827. Columns: WxCardUserColumns,
  828. PrimaryKey: []*schema.Column{WxCardUserColumns[0]},
  829. Indexes: []*schema.Index{
  830. {
  831. Name: "wxcarduser_wxid_open_id",
  832. Unique: false,
  833. Columns: []*schema.Column{WxCardUserColumns[4], WxCardUserColumns[10]},
  834. },
  835. },
  836. }
  837. // WxCardVisitColumns holds the columns for the "wx_card_visit" table.
  838. WxCardVisitColumns = []*schema.Column{
  839. {Name: "id", Type: field.TypeUint64, Increment: true},
  840. {Name: "created_at", Type: field.TypeTime, Comment: "Create Time | 创建日期"},
  841. {Name: "updated_at", Type: field.TypeTime, Comment: "Update Time | 修改日期"},
  842. {Name: "deleted_at", Type: field.TypeTime, Nullable: true, Comment: "Delete Time | 删除日期"},
  843. {Name: "user_id", Type: field.TypeUint64, Nullable: true, Comment: "user表ID", Default: 0},
  844. {Name: "bot_id", Type: field.TypeUint64, Comment: "被访ID", Default: 0},
  845. {Name: "bot_type", Type: field.TypeUint8, Comment: "类型:1-微信 2-小程序 3-智能体", Default: 0},
  846. }
  847. // WxCardVisitTable holds the schema information for the "wx_card_visit" table.
  848. WxCardVisitTable = &schema.Table{
  849. Name: "wx_card_visit",
  850. Columns: WxCardVisitColumns,
  851. PrimaryKey: []*schema.Column{WxCardVisitColumns[0]},
  852. Indexes: []*schema.Index{
  853. {
  854. Name: "wxcardvisit_user_id",
  855. Unique: false,
  856. Columns: []*schema.Column{WxCardVisitColumns[4]},
  857. },
  858. {
  859. Name: "wxcardvisit_bot_id_bot_type",
  860. Unique: false,
  861. Columns: []*schema.Column{WxCardVisitColumns[5], WxCardVisitColumns[6]},
  862. },
  863. },
  864. }
  865. // Tables holds all the tables in the schema.
  866. Tables = []*schema.Table{
  867. AgentTable,
  868. AgentBaseTable,
  869. BatchMsgTable,
  870. CategoryTable,
  871. ChatRecordsTable,
  872. ChatSessionTable,
  873. ContactTable,
  874. EmployeeTable,
  875. EmployeeConfigTable,
  876. LabelTable,
  877. LabelRelationshipTable,
  878. MessagesTable,
  879. MessageRecordsTable,
  880. MsgTable,
  881. ServerTable,
  882. SopNodeTable,
  883. SopStageTable,
  884. SopTaskTable,
  885. TokenTable,
  886. TutorialTable,
  887. WorkExperienceTable,
  888. WxTable,
  889. WxCardTable,
  890. WxCardUserTable,
  891. WxCardVisitTable,
  892. }
  893. )
  894. func init() {
  895. AgentTable.Annotation = &entsql.Annotation{
  896. Table: "agent",
  897. }
  898. AgentBaseTable.Annotation = &entsql.Annotation{
  899. Table: "agent_base",
  900. }
  901. BatchMsgTable.Annotation = &entsql.Annotation{
  902. Table: "batch_msg",
  903. }
  904. CategoryTable.Annotation = &entsql.Annotation{
  905. Table: "category",
  906. }
  907. ChatRecordsTable.Annotation = &entsql.Annotation{
  908. Table: "chat_records",
  909. }
  910. ChatSessionTable.Annotation = &entsql.Annotation{
  911. Table: "chat_session",
  912. }
  913. ContactTable.Annotation = &entsql.Annotation{
  914. Table: "contact",
  915. }
  916. EmployeeTable.Annotation = &entsql.Annotation{
  917. Table: "employee",
  918. }
  919. EmployeeConfigTable.Annotation = &entsql.Annotation{
  920. Table: "employee_config",
  921. }
  922. LabelTable.Annotation = &entsql.Annotation{
  923. Table: "label",
  924. }
  925. LabelRelationshipTable.ForeignKeys[0].RefTable = ContactTable
  926. LabelRelationshipTable.ForeignKeys[1].RefTable = LabelTable
  927. LabelRelationshipTable.Annotation = &entsql.Annotation{
  928. Table: "label_relationship",
  929. }
  930. MessagesTable.Annotation = &entsql.Annotation{
  931. Table: "messages",
  932. }
  933. MessageRecordsTable.ForeignKeys[0].RefTable = ContactTable
  934. MessageRecordsTable.ForeignKeys[1].RefTable = SopNodeTable
  935. MessageRecordsTable.ForeignKeys[2].RefTable = SopStageTable
  936. MessageRecordsTable.Annotation = &entsql.Annotation{
  937. Table: "message_records",
  938. }
  939. MsgTable.Annotation = &entsql.Annotation{
  940. Table: "msg",
  941. }
  942. ServerTable.Annotation = &entsql.Annotation{
  943. Table: "server",
  944. }
  945. SopNodeTable.ForeignKeys[0].RefTable = SopStageTable
  946. SopNodeTable.Annotation = &entsql.Annotation{
  947. Table: "sop_node",
  948. }
  949. SopStageTable.ForeignKeys[0].RefTable = SopTaskTable
  950. SopStageTable.Annotation = &entsql.Annotation{
  951. Table: "sop_stage",
  952. }
  953. SopTaskTable.Annotation = &entsql.Annotation{
  954. Table: "sop_task",
  955. }
  956. TokenTable.Annotation = &entsql.Annotation{
  957. Table: "token",
  958. }
  959. TutorialTable.ForeignKeys[0].RefTable = EmployeeTable
  960. TutorialTable.Annotation = &entsql.Annotation{
  961. Table: "tutorial",
  962. }
  963. WorkExperienceTable.ForeignKeys[0].RefTable = EmployeeTable
  964. WorkExperienceTable.Annotation = &entsql.Annotation{
  965. Table: "work_experience",
  966. }
  967. WxTable.ForeignKeys[0].RefTable = AgentTable
  968. WxTable.ForeignKeys[1].RefTable = AgentBaseTable
  969. WxTable.ForeignKeys[2].RefTable = ServerTable
  970. WxTable.Annotation = &entsql.Annotation{
  971. Table: "wx",
  972. }
  973. WxCardTable.Annotation = &entsql.Annotation{
  974. Table: "wx_card",
  975. }
  976. WxCardUserTable.Annotation = &entsql.Annotation{
  977. Table: "wx_card_user",
  978. }
  979. WxCardVisitTable.Annotation = &entsql.Annotation{
  980. Table: "wx_card_visit",
  981. }
  982. }