schema.go 70 KB

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