schema.go 48 KB

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