schema.go 77 KB

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