schema.go 48 KB

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