schema.go 88 KB

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