runtime.go 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  1. // Code generated by ent, DO NOT EDIT.
  2. package runtime
  3. import (
  4. "time"
  5. "wechat-api/ent/agent"
  6. "wechat-api/ent/agentbase"
  7. "wechat-api/ent/batchmsg"
  8. "wechat-api/ent/category"
  9. "wechat-api/ent/chatrecords"
  10. "wechat-api/ent/chatsession"
  11. "wechat-api/ent/contact"
  12. "wechat-api/ent/employee"
  13. "wechat-api/ent/employeeconfig"
  14. "wechat-api/ent/label"
  15. "wechat-api/ent/labelrelationship"
  16. "wechat-api/ent/message"
  17. "wechat-api/ent/messagerecords"
  18. "wechat-api/ent/msg"
  19. "wechat-api/ent/schema"
  20. "wechat-api/ent/server"
  21. "wechat-api/ent/sopnode"
  22. "wechat-api/ent/sopstage"
  23. "wechat-api/ent/soptask"
  24. "wechat-api/ent/token"
  25. "wechat-api/ent/tutorial"
  26. "wechat-api/ent/workexperience"
  27. "wechat-api/ent/wx"
  28. "wechat-api/ent/wxcard"
  29. "wechat-api/ent/wxcarduser"
  30. "wechat-api/ent/wxcardvisit"
  31. )
  32. // The init function reads all schema descriptors with runtime code
  33. // (default values, validators, hooks and policies) and stitches it
  34. // to their package variables.
  35. func init() {
  36. agentMixin := schema.Agent{}.Mixin()
  37. agentMixinHooks1 := agentMixin[1].Hooks()
  38. agent.Hooks[0] = agentMixinHooks1[0]
  39. agentMixinInters1 := agentMixin[1].Interceptors()
  40. agent.Interceptors[0] = agentMixinInters1[0]
  41. agentMixinFields0 := agentMixin[0].Fields()
  42. _ = agentMixinFields0
  43. agentFields := schema.Agent{}.Fields()
  44. _ = agentFields
  45. // agentDescCreatedAt is the schema descriptor for created_at field.
  46. agentDescCreatedAt := agentMixinFields0[1].Descriptor()
  47. // agent.DefaultCreatedAt holds the default value on creation for the created_at field.
  48. agent.DefaultCreatedAt = agentDescCreatedAt.Default.(func() time.Time)
  49. // agentDescUpdatedAt is the schema descriptor for updated_at field.
  50. agentDescUpdatedAt := agentMixinFields0[2].Descriptor()
  51. // agent.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  52. agent.DefaultUpdatedAt = agentDescUpdatedAt.Default.(func() time.Time)
  53. // agent.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  54. agent.UpdateDefaultUpdatedAt = agentDescUpdatedAt.UpdateDefault.(func() time.Time)
  55. // agentDescName is the schema descriptor for name field.
  56. agentDescName := agentFields[0].Descriptor()
  57. // agent.NameValidator is a validator for the "name" field. It is called by the builders before save.
  58. agent.NameValidator = agentDescName.Validators[0].(func(string) error)
  59. // agentDescRole is the schema descriptor for role field.
  60. agentDescRole := agentFields[1].Descriptor()
  61. // agent.RoleValidator is a validator for the "role" field. It is called by the builders before save.
  62. agent.RoleValidator = agentDescRole.Validators[0].(func(string) error)
  63. // agentDescStatus is the schema descriptor for status field.
  64. agentDescStatus := agentFields[2].Descriptor()
  65. // agent.DefaultStatus holds the default value on creation for the status field.
  66. agent.DefaultStatus = agentDescStatus.Default.(int)
  67. // agent.StatusValidator is a validator for the "status" field. It is called by the builders before save.
  68. agent.StatusValidator = agentDescStatus.Validators[0].(func(int) error)
  69. // agentDescBackground is the schema descriptor for background field.
  70. agentDescBackground := agentFields[3].Descriptor()
  71. // agent.DefaultBackground holds the default value on creation for the background field.
  72. agent.DefaultBackground = agentDescBackground.Default.(string)
  73. // agent.BackgroundValidator is a validator for the "background" field. It is called by the builders before save.
  74. agent.BackgroundValidator = agentDescBackground.Validators[0].(func(string) error)
  75. // agentDescExamples is the schema descriptor for examples field.
  76. agentDescExamples := agentFields[4].Descriptor()
  77. // agent.DefaultExamples holds the default value on creation for the examples field.
  78. agent.DefaultExamples = agentDescExamples.Default.(string)
  79. // agent.ExamplesValidator is a validator for the "examples" field. It is called by the builders before save.
  80. agent.ExamplesValidator = agentDescExamples.Validators[0].(func(string) error)
  81. // agentDescOrganizationID is the schema descriptor for organization_id field.
  82. agentDescOrganizationID := agentFields[5].Descriptor()
  83. // agent.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  84. agent.OrganizationIDValidator = agentDescOrganizationID.Validators[0].(func(uint64) error)
  85. // agentDescDatasetID is the schema descriptor for dataset_id field.
  86. agentDescDatasetID := agentFields[6].Descriptor()
  87. // agent.DefaultDatasetID holds the default value on creation for the dataset_id field.
  88. agent.DefaultDatasetID = agentDescDatasetID.Default.(string)
  89. // agent.DatasetIDValidator is a validator for the "dataset_id" field. It is called by the builders before save.
  90. agent.DatasetIDValidator = agentDescDatasetID.Validators[0].(func(string) error)
  91. // agentDescCollectionID is the schema descriptor for collection_id field.
  92. agentDescCollectionID := agentFields[7].Descriptor()
  93. // agent.DefaultCollectionID holds the default value on creation for the collection_id field.
  94. agent.DefaultCollectionID = agentDescCollectionID.Default.(string)
  95. // agent.CollectionIDValidator is a validator for the "collection_id" field. It is called by the builders before save.
  96. agent.CollectionIDValidator = agentDescCollectionID.Validators[0].(func(string) error)
  97. agentbaseFields := schema.AgentBase{}.Fields()
  98. _ = agentbaseFields
  99. // agentbaseDescQ is the schema descriptor for q field.
  100. agentbaseDescQ := agentbaseFields[1].Descriptor()
  101. // agentbase.DefaultQ holds the default value on creation for the q field.
  102. agentbase.DefaultQ = agentbaseDescQ.Default.(string)
  103. // agentbaseDescA is the schema descriptor for a field.
  104. agentbaseDescA := agentbaseFields[2].Descriptor()
  105. // agentbase.DefaultA holds the default value on creation for the a field.
  106. agentbase.DefaultA = agentbaseDescA.Default.(string)
  107. // agentbaseDescChunkIndex is the schema descriptor for chunk_index field.
  108. agentbaseDescChunkIndex := agentbaseFields[3].Descriptor()
  109. // agentbase.ChunkIndexValidator is a validator for the "chunk_index" field. It is called by the builders before save.
  110. agentbase.ChunkIndexValidator = agentbaseDescChunkIndex.Validators[0].(func(uint64) error)
  111. // agentbaseDescDatasetID is the schema descriptor for dataset_id field.
  112. agentbaseDescDatasetID := agentbaseFields[5].Descriptor()
  113. // agentbase.DefaultDatasetID holds the default value on creation for the dataset_id field.
  114. agentbase.DefaultDatasetID = agentbaseDescDatasetID.Default.(string)
  115. // agentbaseDescCollectionID is the schema descriptor for collection_id field.
  116. agentbaseDescCollectionID := agentbaseFields[6].Descriptor()
  117. // agentbase.DefaultCollectionID holds the default value on creation for the collection_id field.
  118. agentbase.DefaultCollectionID = agentbaseDescCollectionID.Default.(string)
  119. // agentbaseDescSourceName is the schema descriptor for source_name field.
  120. agentbaseDescSourceName := agentbaseFields[7].Descriptor()
  121. // agentbase.DefaultSourceName holds the default value on creation for the source_name field.
  122. agentbase.DefaultSourceName = agentbaseDescSourceName.Default.(string)
  123. batchmsgMixin := schema.BatchMsg{}.Mixin()
  124. batchmsgMixinHooks1 := batchmsgMixin[1].Hooks()
  125. batchmsg.Hooks[0] = batchmsgMixinHooks1[0]
  126. batchmsgMixinInters1 := batchmsgMixin[1].Interceptors()
  127. batchmsg.Interceptors[0] = batchmsgMixinInters1[0]
  128. batchmsgMixinFields0 := batchmsgMixin[0].Fields()
  129. _ = batchmsgMixinFields0
  130. batchmsgFields := schema.BatchMsg{}.Fields()
  131. _ = batchmsgFields
  132. // batchmsgDescCreatedAt is the schema descriptor for created_at field.
  133. batchmsgDescCreatedAt := batchmsgMixinFields0[1].Descriptor()
  134. // batchmsg.DefaultCreatedAt holds the default value on creation for the created_at field.
  135. batchmsg.DefaultCreatedAt = batchmsgDescCreatedAt.Default.(func() time.Time)
  136. // batchmsgDescUpdatedAt is the schema descriptor for updated_at field.
  137. batchmsgDescUpdatedAt := batchmsgMixinFields0[2].Descriptor()
  138. // batchmsg.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  139. batchmsg.DefaultUpdatedAt = batchmsgDescUpdatedAt.Default.(func() time.Time)
  140. // batchmsg.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  141. batchmsg.UpdateDefaultUpdatedAt = batchmsgDescUpdatedAt.UpdateDefault.(func() time.Time)
  142. // batchmsgDescTaskName is the schema descriptor for task_name field.
  143. batchmsgDescTaskName := batchmsgFields[2].Descriptor()
  144. // batchmsg.DefaultTaskName holds the default value on creation for the task_name field.
  145. batchmsg.DefaultTaskName = batchmsgDescTaskName.Default.(string)
  146. // batchmsgDescOrganizationID is the schema descriptor for organization_id field.
  147. batchmsgDescOrganizationID := batchmsgFields[14].Descriptor()
  148. // batchmsg.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  149. batchmsg.OrganizationIDValidator = batchmsgDescOrganizationID.Validators[0].(func(uint64) error)
  150. categoryMixin := schema.Category{}.Mixin()
  151. categoryMixinHooks1 := categoryMixin[1].Hooks()
  152. category.Hooks[0] = categoryMixinHooks1[0]
  153. categoryMixinInters1 := categoryMixin[1].Interceptors()
  154. category.Interceptors[0] = categoryMixinInters1[0]
  155. categoryMixinFields0 := categoryMixin[0].Fields()
  156. _ = categoryMixinFields0
  157. categoryFields := schema.Category{}.Fields()
  158. _ = categoryFields
  159. // categoryDescCreatedAt is the schema descriptor for created_at field.
  160. categoryDescCreatedAt := categoryMixinFields0[1].Descriptor()
  161. // category.DefaultCreatedAt holds the default value on creation for the created_at field.
  162. category.DefaultCreatedAt = categoryDescCreatedAt.Default.(func() time.Time)
  163. // categoryDescUpdatedAt is the schema descriptor for updated_at field.
  164. categoryDescUpdatedAt := categoryMixinFields0[2].Descriptor()
  165. // category.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  166. category.DefaultUpdatedAt = categoryDescUpdatedAt.Default.(func() time.Time)
  167. // category.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  168. category.UpdateDefaultUpdatedAt = categoryDescUpdatedAt.UpdateDefault.(func() time.Time)
  169. // categoryDescName is the schema descriptor for name field.
  170. categoryDescName := categoryFields[0].Descriptor()
  171. // category.NameValidator is a validator for the "name" field. It is called by the builders before save.
  172. category.NameValidator = categoryDescName.Validators[0].(func(string) error)
  173. // categoryDescOrganizationID is the schema descriptor for organization_id field.
  174. categoryDescOrganizationID := categoryFields[1].Descriptor()
  175. // category.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  176. category.OrganizationIDValidator = categoryDescOrganizationID.Validators[0].(func(uint64) error)
  177. chatrecordsMixin := schema.ChatRecords{}.Mixin()
  178. chatrecordsMixinHooks1 := chatrecordsMixin[1].Hooks()
  179. chatrecords.Hooks[0] = chatrecordsMixinHooks1[0]
  180. chatrecordsMixinInters1 := chatrecordsMixin[1].Interceptors()
  181. chatrecords.Interceptors[0] = chatrecordsMixinInters1[0]
  182. chatrecordsMixinFields0 := chatrecordsMixin[0].Fields()
  183. _ = chatrecordsMixinFields0
  184. chatrecordsFields := schema.ChatRecords{}.Fields()
  185. _ = chatrecordsFields
  186. // chatrecordsDescCreatedAt is the schema descriptor for created_at field.
  187. chatrecordsDescCreatedAt := chatrecordsMixinFields0[1].Descriptor()
  188. // chatrecords.DefaultCreatedAt holds the default value on creation for the created_at field.
  189. chatrecords.DefaultCreatedAt = chatrecordsDescCreatedAt.Default.(func() time.Time)
  190. // chatrecordsDescUpdatedAt is the schema descriptor for updated_at field.
  191. chatrecordsDescUpdatedAt := chatrecordsMixinFields0[2].Descriptor()
  192. // chatrecords.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  193. chatrecords.DefaultUpdatedAt = chatrecordsDescUpdatedAt.Default.(func() time.Time)
  194. // chatrecords.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  195. chatrecords.UpdateDefaultUpdatedAt = chatrecordsDescUpdatedAt.UpdateDefault.(func() time.Time)
  196. // chatrecordsDescContent is the schema descriptor for content field.
  197. chatrecordsDescContent := chatrecordsFields[0].Descriptor()
  198. // chatrecords.DefaultContent holds the default value on creation for the content field.
  199. chatrecords.DefaultContent = chatrecordsDescContent.Default.(string)
  200. // chatrecordsDescContentType is the schema descriptor for content_type field.
  201. chatrecordsDescContentType := chatrecordsFields[1].Descriptor()
  202. // chatrecords.DefaultContentType holds the default value on creation for the content_type field.
  203. chatrecords.DefaultContentType = chatrecordsDescContentType.Default.(uint8)
  204. // chatrecordsDescSessionID is the schema descriptor for session_id field.
  205. chatrecordsDescSessionID := chatrecordsFields[2].Descriptor()
  206. // chatrecords.DefaultSessionID holds the default value on creation for the session_id field.
  207. chatrecords.DefaultSessionID = chatrecordsDescSessionID.Default.(uint64)
  208. // chatrecordsDescUserID is the schema descriptor for user_id field.
  209. chatrecordsDescUserID := chatrecordsFields[3].Descriptor()
  210. // chatrecords.DefaultUserID holds the default value on creation for the user_id field.
  211. chatrecords.DefaultUserID = chatrecordsDescUserID.Default.(uint64)
  212. // chatrecordsDescBotID is the schema descriptor for bot_id field.
  213. chatrecordsDescBotID := chatrecordsFields[4].Descriptor()
  214. // chatrecords.DefaultBotID holds the default value on creation for the bot_id field.
  215. chatrecords.DefaultBotID = chatrecordsDescBotID.Default.(uint64)
  216. // chatrecordsDescBotType is the schema descriptor for bot_type field.
  217. chatrecordsDescBotType := chatrecordsFields[5].Descriptor()
  218. // chatrecords.DefaultBotType holds the default value on creation for the bot_type field.
  219. chatrecords.DefaultBotType = chatrecordsDescBotType.Default.(uint8)
  220. chatsessionMixin := schema.ChatSession{}.Mixin()
  221. chatsessionMixinHooks1 := chatsessionMixin[1].Hooks()
  222. chatsession.Hooks[0] = chatsessionMixinHooks1[0]
  223. chatsessionMixinInters1 := chatsessionMixin[1].Interceptors()
  224. chatsession.Interceptors[0] = chatsessionMixinInters1[0]
  225. chatsessionMixinFields0 := chatsessionMixin[0].Fields()
  226. _ = chatsessionMixinFields0
  227. chatsessionFields := schema.ChatSession{}.Fields()
  228. _ = chatsessionFields
  229. // chatsessionDescCreatedAt is the schema descriptor for created_at field.
  230. chatsessionDescCreatedAt := chatsessionMixinFields0[1].Descriptor()
  231. // chatsession.DefaultCreatedAt holds the default value on creation for the created_at field.
  232. chatsession.DefaultCreatedAt = chatsessionDescCreatedAt.Default.(func() time.Time)
  233. // chatsessionDescUpdatedAt is the schema descriptor for updated_at field.
  234. chatsessionDescUpdatedAt := chatsessionMixinFields0[2].Descriptor()
  235. // chatsession.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  236. chatsession.DefaultUpdatedAt = chatsessionDescUpdatedAt.Default.(func() time.Time)
  237. // chatsession.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  238. chatsession.UpdateDefaultUpdatedAt = chatsessionDescUpdatedAt.UpdateDefault.(func() time.Time)
  239. // chatsessionDescName is the schema descriptor for name field.
  240. chatsessionDescName := chatsessionFields[0].Descriptor()
  241. // chatsession.DefaultName holds the default value on creation for the name field.
  242. chatsession.DefaultName = chatsessionDescName.Default.(string)
  243. // chatsessionDescUserID is the schema descriptor for user_id field.
  244. chatsessionDescUserID := chatsessionFields[1].Descriptor()
  245. // chatsession.DefaultUserID holds the default value on creation for the user_id field.
  246. chatsession.DefaultUserID = chatsessionDescUserID.Default.(uint64)
  247. // chatsessionDescBotID is the schema descriptor for bot_id field.
  248. chatsessionDescBotID := chatsessionFields[2].Descriptor()
  249. // chatsession.DefaultBotID holds the default value on creation for the bot_id field.
  250. chatsession.DefaultBotID = chatsessionDescBotID.Default.(uint64)
  251. // chatsessionDescBotType is the schema descriptor for bot_type field.
  252. chatsessionDescBotType := chatsessionFields[3].Descriptor()
  253. // chatsession.DefaultBotType holds the default value on creation for the bot_type field.
  254. chatsession.DefaultBotType = chatsessionDescBotType.Default.(uint8)
  255. contactMixin := schema.Contact{}.Mixin()
  256. contactMixinHooks2 := contactMixin[2].Hooks()
  257. contact.Hooks[0] = contactMixinHooks2[0]
  258. contactMixinInters2 := contactMixin[2].Interceptors()
  259. contact.Interceptors[0] = contactMixinInters2[0]
  260. contactMixinFields0 := contactMixin[0].Fields()
  261. _ = contactMixinFields0
  262. contactMixinFields1 := contactMixin[1].Fields()
  263. _ = contactMixinFields1
  264. contactFields := schema.Contact{}.Fields()
  265. _ = contactFields
  266. // contactDescCreatedAt is the schema descriptor for created_at field.
  267. contactDescCreatedAt := contactMixinFields0[1].Descriptor()
  268. // contact.DefaultCreatedAt holds the default value on creation for the created_at field.
  269. contact.DefaultCreatedAt = contactDescCreatedAt.Default.(func() time.Time)
  270. // contactDescUpdatedAt is the schema descriptor for updated_at field.
  271. contactDescUpdatedAt := contactMixinFields0[2].Descriptor()
  272. // contact.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  273. contact.DefaultUpdatedAt = contactDescUpdatedAt.Default.(func() time.Time)
  274. // contact.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  275. contact.UpdateDefaultUpdatedAt = contactDescUpdatedAt.UpdateDefault.(func() time.Time)
  276. // contactDescStatus is the schema descriptor for status field.
  277. contactDescStatus := contactMixinFields1[0].Descriptor()
  278. // contact.DefaultStatus holds the default value on creation for the status field.
  279. contact.DefaultStatus = contactDescStatus.Default.(uint8)
  280. // contactDescWxWxid is the schema descriptor for wx_wxid field.
  281. contactDescWxWxid := contactFields[0].Descriptor()
  282. // contact.DefaultWxWxid holds the default value on creation for the wx_wxid field.
  283. contact.DefaultWxWxid = contactDescWxWxid.Default.(string)
  284. // contactDescType is the schema descriptor for type field.
  285. contactDescType := contactFields[1].Descriptor()
  286. // contact.DefaultType holds the default value on creation for the type field.
  287. contact.DefaultType = contactDescType.Default.(int)
  288. // contactDescWxid is the schema descriptor for wxid field.
  289. contactDescWxid := contactFields[2].Descriptor()
  290. // contact.DefaultWxid holds the default value on creation for the wxid field.
  291. contact.DefaultWxid = contactDescWxid.Default.(string)
  292. // contactDescAccount is the schema descriptor for account field.
  293. contactDescAccount := contactFields[3].Descriptor()
  294. // contact.DefaultAccount holds the default value on creation for the account field.
  295. contact.DefaultAccount = contactDescAccount.Default.(string)
  296. // contactDescNickname is the schema descriptor for nickname field.
  297. contactDescNickname := contactFields[4].Descriptor()
  298. // contact.DefaultNickname holds the default value on creation for the nickname field.
  299. contact.DefaultNickname = contactDescNickname.Default.(string)
  300. // contactDescMarkname is the schema descriptor for markname field.
  301. contactDescMarkname := contactFields[5].Descriptor()
  302. // contact.DefaultMarkname holds the default value on creation for the markname field.
  303. contact.DefaultMarkname = contactDescMarkname.Default.(string)
  304. // contactDescHeadimg is the schema descriptor for headimg field.
  305. contactDescHeadimg := contactFields[6].Descriptor()
  306. // contact.DefaultHeadimg holds the default value on creation for the headimg field.
  307. contact.DefaultHeadimg = contactDescHeadimg.Default.(string)
  308. // contactDescSex is the schema descriptor for sex field.
  309. contactDescSex := contactFields[7].Descriptor()
  310. // contact.DefaultSex holds the default value on creation for the sex field.
  311. contact.DefaultSex = contactDescSex.Default.(int)
  312. // contactDescStarrole is the schema descriptor for starrole field.
  313. contactDescStarrole := contactFields[8].Descriptor()
  314. // contact.DefaultStarrole holds the default value on creation for the starrole field.
  315. contact.DefaultStarrole = contactDescStarrole.Default.(string)
  316. // contactDescDontseeit is the schema descriptor for dontseeit field.
  317. contactDescDontseeit := contactFields[9].Descriptor()
  318. // contact.DefaultDontseeit holds the default value on creation for the dontseeit field.
  319. contact.DefaultDontseeit = contactDescDontseeit.Default.(int)
  320. // contactDescDontseeme is the schema descriptor for dontseeme field.
  321. contactDescDontseeme := contactFields[10].Descriptor()
  322. // contact.DefaultDontseeme holds the default value on creation for the dontseeme field.
  323. contact.DefaultDontseeme = contactDescDontseeme.Default.(int)
  324. // contactDescLag is the schema descriptor for lag field.
  325. contactDescLag := contactFields[11].Descriptor()
  326. // contact.DefaultLag holds the default value on creation for the lag field.
  327. contact.DefaultLag = contactDescLag.Default.(string)
  328. // contactDescGid is the schema descriptor for gid field.
  329. contactDescGid := contactFields[12].Descriptor()
  330. // contact.DefaultGid holds the default value on creation for the gid field.
  331. contact.DefaultGid = contactDescGid.Default.(string)
  332. // contactDescGname is the schema descriptor for gname field.
  333. contactDescGname := contactFields[13].Descriptor()
  334. // contact.DefaultGname holds the default value on creation for the gname field.
  335. contact.DefaultGname = contactDescGname.Default.(string)
  336. // contactDescV3 is the schema descriptor for v3 field.
  337. contactDescV3 := contactFields[14].Descriptor()
  338. // contact.DefaultV3 holds the default value on creation for the v3 field.
  339. contact.DefaultV3 = contactDescV3.Default.(string)
  340. // contactDescOrganizationID is the schema descriptor for organization_id field.
  341. contactDescOrganizationID := contactFields[15].Descriptor()
  342. // contact.DefaultOrganizationID holds the default value on creation for the organization_id field.
  343. contact.DefaultOrganizationID = contactDescOrganizationID.Default.(uint64)
  344. employeeMixin := schema.Employee{}.Mixin()
  345. employeeMixinHooks1 := employeeMixin[1].Hooks()
  346. employee.Hooks[0] = employeeMixinHooks1[0]
  347. employeeMixinInters1 := employeeMixin[1].Interceptors()
  348. employee.Interceptors[0] = employeeMixinInters1[0]
  349. employeeMixinFields0 := employeeMixin[0].Fields()
  350. _ = employeeMixinFields0
  351. employeeFields := schema.Employee{}.Fields()
  352. _ = employeeFields
  353. // employeeDescCreatedAt is the schema descriptor for created_at field.
  354. employeeDescCreatedAt := employeeMixinFields0[1].Descriptor()
  355. // employee.DefaultCreatedAt holds the default value on creation for the created_at field.
  356. employee.DefaultCreatedAt = employeeDescCreatedAt.Default.(func() time.Time)
  357. // employeeDescUpdatedAt is the schema descriptor for updated_at field.
  358. employeeDescUpdatedAt := employeeMixinFields0[2].Descriptor()
  359. // employee.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  360. employee.DefaultUpdatedAt = employeeDescUpdatedAt.Default.(func() time.Time)
  361. // employee.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  362. employee.UpdateDefaultUpdatedAt = employeeDescUpdatedAt.UpdateDefault.(func() time.Time)
  363. // employeeDescTitle is the schema descriptor for title field.
  364. employeeDescTitle := employeeFields[0].Descriptor()
  365. // employee.TitleValidator is a validator for the "title" field. It is called by the builders before save.
  366. employee.TitleValidator = employeeDescTitle.Validators[0].(func(string) error)
  367. // employeeDescAvatar is the schema descriptor for avatar field.
  368. employeeDescAvatar := employeeFields[1].Descriptor()
  369. // employee.AvatarValidator is a validator for the "avatar" field. It is called by the builders before save.
  370. employee.AvatarValidator = employeeDescAvatar.Validators[0].(func(string) error)
  371. // employeeDescTags is the schema descriptor for tags field.
  372. employeeDescTags := employeeFields[2].Descriptor()
  373. // employee.TagsValidator is a validator for the "tags" field. It is called by the builders before save.
  374. employee.TagsValidator = employeeDescTags.Validators[0].(func(string) error)
  375. // employeeDescHireCount is the schema descriptor for hire_count field.
  376. employeeDescHireCount := employeeFields[3].Descriptor()
  377. // employee.DefaultHireCount holds the default value on creation for the hire_count field.
  378. employee.DefaultHireCount = employeeDescHireCount.Default.(int)
  379. // employee.HireCountValidator is a validator for the "hire_count" field. It is called by the builders before save.
  380. employee.HireCountValidator = employeeDescHireCount.Validators[0].(func(int) error)
  381. // employeeDescServiceCount is the schema descriptor for service_count field.
  382. employeeDescServiceCount := employeeFields[4].Descriptor()
  383. // employee.DefaultServiceCount holds the default value on creation for the service_count field.
  384. employee.DefaultServiceCount = employeeDescServiceCount.Default.(int)
  385. // employee.ServiceCountValidator is a validator for the "service_count" field. It is called by the builders before save.
  386. employee.ServiceCountValidator = employeeDescServiceCount.Validators[0].(func(int) error)
  387. // employeeDescAchievementCount is the schema descriptor for achievement_count field.
  388. employeeDescAchievementCount := employeeFields[5].Descriptor()
  389. // employee.DefaultAchievementCount holds the default value on creation for the achievement_count field.
  390. employee.DefaultAchievementCount = employeeDescAchievementCount.Default.(int)
  391. // employee.AchievementCountValidator is a validator for the "achievement_count" field. It is called by the builders before save.
  392. employee.AchievementCountValidator = employeeDescAchievementCount.Validators[0].(func(int) error)
  393. // employeeDescIntro is the schema descriptor for intro field.
  394. employeeDescIntro := employeeFields[6].Descriptor()
  395. // employee.DefaultIntro holds the default value on creation for the intro field.
  396. employee.DefaultIntro = employeeDescIntro.Default.(string)
  397. // employee.IntroValidator is a validator for the "intro" field. It is called by the builders before save.
  398. employee.IntroValidator = employeeDescIntro.Validators[0].(func(string) error)
  399. // employeeDescEstimate is the schema descriptor for estimate field.
  400. employeeDescEstimate := employeeFields[7].Descriptor()
  401. // employee.DefaultEstimate holds the default value on creation for the estimate field.
  402. employee.DefaultEstimate = employeeDescEstimate.Default.(string)
  403. // employee.EstimateValidator is a validator for the "estimate" field. It is called by the builders before save.
  404. employee.EstimateValidator = employeeDescEstimate.Validators[0].(func(string) error)
  405. // employeeDescSkill is the schema descriptor for skill field.
  406. employeeDescSkill := employeeFields[8].Descriptor()
  407. // employee.DefaultSkill holds the default value on creation for the skill field.
  408. employee.DefaultSkill = employeeDescSkill.Default.(string)
  409. // employee.SkillValidator is a validator for the "skill" field. It is called by the builders before save.
  410. employee.SkillValidator = employeeDescSkill.Validators[0].(func(string) error)
  411. // employeeDescAbilityType is the schema descriptor for ability_type field.
  412. employeeDescAbilityType := employeeFields[9].Descriptor()
  413. // employee.DefaultAbilityType holds the default value on creation for the ability_type field.
  414. employee.DefaultAbilityType = employeeDescAbilityType.Default.(string)
  415. // employeeDescScene is the schema descriptor for scene field.
  416. employeeDescScene := employeeFields[10].Descriptor()
  417. // employee.DefaultScene holds the default value on creation for the scene field.
  418. employee.DefaultScene = employeeDescScene.Default.(string)
  419. // employeeDescSwitchIn is the schema descriptor for switch_in field.
  420. employeeDescSwitchIn := employeeFields[11].Descriptor()
  421. // employee.DefaultSwitchIn holds the default value on creation for the switch_in field.
  422. employee.DefaultSwitchIn = employeeDescSwitchIn.Default.(string)
  423. // employeeDescVideoURL is the schema descriptor for video_url field.
  424. employeeDescVideoURL := employeeFields[12].Descriptor()
  425. // employee.DefaultVideoURL holds the default value on creation for the video_url field.
  426. employee.DefaultVideoURL = employeeDescVideoURL.Default.(string)
  427. // employee.VideoURLValidator is a validator for the "video_url" field. It is called by the builders before save.
  428. employee.VideoURLValidator = employeeDescVideoURL.Validators[0].(func(string) error)
  429. // employeeDescOrganizationID is the schema descriptor for organization_id field.
  430. employeeDescOrganizationID := employeeFields[13].Descriptor()
  431. // employee.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  432. employee.OrganizationIDValidator = employeeDescOrganizationID.Validators[0].(func(uint64) error)
  433. // employeeDescCategoryID is the schema descriptor for category_id field.
  434. employeeDescCategoryID := employeeFields[14].Descriptor()
  435. // employee.CategoryIDValidator is a validator for the "category_id" field. It is called by the builders before save.
  436. employee.CategoryIDValidator = employeeDescCategoryID.Validators[0].(func(uint64) error)
  437. // employeeDescAPIBase is the schema descriptor for api_base field.
  438. employeeDescAPIBase := employeeFields[15].Descriptor()
  439. // employee.DefaultAPIBase holds the default value on creation for the api_base field.
  440. employee.DefaultAPIBase = employeeDescAPIBase.Default.(string)
  441. // employeeDescAPIKey is the schema descriptor for api_key field.
  442. employeeDescAPIKey := employeeFields[16].Descriptor()
  443. // employee.DefaultAPIKey holds the default value on creation for the api_key field.
  444. employee.DefaultAPIKey = employeeDescAPIKey.Default.(string)
  445. employeeconfigMixin := schema.EmployeeConfig{}.Mixin()
  446. employeeconfigMixinHooks1 := employeeconfigMixin[1].Hooks()
  447. employeeconfig.Hooks[0] = employeeconfigMixinHooks1[0]
  448. employeeconfigMixinInters1 := employeeconfigMixin[1].Interceptors()
  449. employeeconfig.Interceptors[0] = employeeconfigMixinInters1[0]
  450. employeeconfigMixinFields0 := employeeconfigMixin[0].Fields()
  451. _ = employeeconfigMixinFields0
  452. employeeconfigFields := schema.EmployeeConfig{}.Fields()
  453. _ = employeeconfigFields
  454. // employeeconfigDescCreatedAt is the schema descriptor for created_at field.
  455. employeeconfigDescCreatedAt := employeeconfigMixinFields0[1].Descriptor()
  456. // employeeconfig.DefaultCreatedAt holds the default value on creation for the created_at field.
  457. employeeconfig.DefaultCreatedAt = employeeconfigDescCreatedAt.Default.(func() time.Time)
  458. // employeeconfigDescUpdatedAt is the schema descriptor for updated_at field.
  459. employeeconfigDescUpdatedAt := employeeconfigMixinFields0[2].Descriptor()
  460. // employeeconfig.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  461. employeeconfig.DefaultUpdatedAt = employeeconfigDescUpdatedAt.Default.(func() time.Time)
  462. // employeeconfig.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  463. employeeconfig.UpdateDefaultUpdatedAt = employeeconfigDescUpdatedAt.UpdateDefault.(func() time.Time)
  464. // employeeconfigDescStype is the schema descriptor for stype field.
  465. employeeconfigDescStype := employeeconfigFields[0].Descriptor()
  466. // employeeconfig.DefaultStype holds the default value on creation for the stype field.
  467. employeeconfig.DefaultStype = employeeconfigDescStype.Default.(string)
  468. // employeeconfigDescTitle is the schema descriptor for title field.
  469. employeeconfigDescTitle := employeeconfigFields[1].Descriptor()
  470. // employeeconfig.DefaultTitle holds the default value on creation for the title field.
  471. employeeconfig.DefaultTitle = employeeconfigDescTitle.Default.(string)
  472. // employeeconfigDescPhoto is the schema descriptor for photo field.
  473. employeeconfigDescPhoto := employeeconfigFields[2].Descriptor()
  474. // employeeconfig.DefaultPhoto holds the default value on creation for the photo field.
  475. employeeconfig.DefaultPhoto = employeeconfigDescPhoto.Default.(string)
  476. // employeeconfigDescOrganizationID is the schema descriptor for organization_id field.
  477. employeeconfigDescOrganizationID := employeeconfigFields[3].Descriptor()
  478. // employeeconfig.DefaultOrganizationID holds the default value on creation for the organization_id field.
  479. employeeconfig.DefaultOrganizationID = employeeconfigDescOrganizationID.Default.(uint64)
  480. labelMixin := schema.Label{}.Mixin()
  481. labelMixinFields0 := labelMixin[0].Fields()
  482. _ = labelMixinFields0
  483. labelMixinFields1 := labelMixin[1].Fields()
  484. _ = labelMixinFields1
  485. labelFields := schema.Label{}.Fields()
  486. _ = labelFields
  487. // labelDescCreatedAt is the schema descriptor for created_at field.
  488. labelDescCreatedAt := labelMixinFields0[1].Descriptor()
  489. // label.DefaultCreatedAt holds the default value on creation for the created_at field.
  490. label.DefaultCreatedAt = labelDescCreatedAt.Default.(func() time.Time)
  491. // labelDescUpdatedAt is the schema descriptor for updated_at field.
  492. labelDescUpdatedAt := labelMixinFields0[2].Descriptor()
  493. // label.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  494. label.DefaultUpdatedAt = labelDescUpdatedAt.Default.(func() time.Time)
  495. // label.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  496. label.UpdateDefaultUpdatedAt = labelDescUpdatedAt.UpdateDefault.(func() time.Time)
  497. // labelDescStatus is the schema descriptor for status field.
  498. labelDescStatus := labelMixinFields1[0].Descriptor()
  499. // label.DefaultStatus holds the default value on creation for the status field.
  500. label.DefaultStatus = labelDescStatus.Default.(uint8)
  501. // labelDescType is the schema descriptor for type field.
  502. labelDescType := labelFields[0].Descriptor()
  503. // label.DefaultType holds the default value on creation for the type field.
  504. label.DefaultType = labelDescType.Default.(int)
  505. // labelDescName is the schema descriptor for name field.
  506. labelDescName := labelFields[1].Descriptor()
  507. // label.DefaultName holds the default value on creation for the name field.
  508. label.DefaultName = labelDescName.Default.(string)
  509. // labelDescFrom is the schema descriptor for from field.
  510. labelDescFrom := labelFields[2].Descriptor()
  511. // label.DefaultFrom holds the default value on creation for the from field.
  512. label.DefaultFrom = labelDescFrom.Default.(int)
  513. // labelDescMode is the schema descriptor for mode field.
  514. labelDescMode := labelFields[3].Descriptor()
  515. // label.DefaultMode holds the default value on creation for the mode field.
  516. label.DefaultMode = labelDescMode.Default.(int)
  517. // labelDescConditions is the schema descriptor for conditions field.
  518. labelDescConditions := labelFields[4].Descriptor()
  519. // label.DefaultConditions holds the default value on creation for the conditions field.
  520. label.DefaultConditions = labelDescConditions.Default.(string)
  521. // labelDescOrganizationID is the schema descriptor for organization_id field.
  522. labelDescOrganizationID := labelFields[5].Descriptor()
  523. // label.DefaultOrganizationID holds the default value on creation for the organization_id field.
  524. label.DefaultOrganizationID = labelDescOrganizationID.Default.(uint64)
  525. labelrelationshipMixin := schema.LabelRelationship{}.Mixin()
  526. labelrelationshipMixinHooks2 := labelrelationshipMixin[2].Hooks()
  527. labelrelationship.Hooks[0] = labelrelationshipMixinHooks2[0]
  528. labelrelationshipMixinInters2 := labelrelationshipMixin[2].Interceptors()
  529. labelrelationship.Interceptors[0] = labelrelationshipMixinInters2[0]
  530. labelrelationshipMixinFields0 := labelrelationshipMixin[0].Fields()
  531. _ = labelrelationshipMixinFields0
  532. labelrelationshipMixinFields1 := labelrelationshipMixin[1].Fields()
  533. _ = labelrelationshipMixinFields1
  534. labelrelationshipFields := schema.LabelRelationship{}.Fields()
  535. _ = labelrelationshipFields
  536. // labelrelationshipDescCreatedAt is the schema descriptor for created_at field.
  537. labelrelationshipDescCreatedAt := labelrelationshipMixinFields0[1].Descriptor()
  538. // labelrelationship.DefaultCreatedAt holds the default value on creation for the created_at field.
  539. labelrelationship.DefaultCreatedAt = labelrelationshipDescCreatedAt.Default.(func() time.Time)
  540. // labelrelationshipDescUpdatedAt is the schema descriptor for updated_at field.
  541. labelrelationshipDescUpdatedAt := labelrelationshipMixinFields0[2].Descriptor()
  542. // labelrelationship.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  543. labelrelationship.DefaultUpdatedAt = labelrelationshipDescUpdatedAt.Default.(func() time.Time)
  544. // labelrelationship.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  545. labelrelationship.UpdateDefaultUpdatedAt = labelrelationshipDescUpdatedAt.UpdateDefault.(func() time.Time)
  546. // labelrelationshipDescStatus is the schema descriptor for status field.
  547. labelrelationshipDescStatus := labelrelationshipMixinFields1[0].Descriptor()
  548. // labelrelationship.DefaultStatus holds the default value on creation for the status field.
  549. labelrelationship.DefaultStatus = labelrelationshipDescStatus.Default.(uint8)
  550. // labelrelationshipDescLabelID is the schema descriptor for label_id field.
  551. labelrelationshipDescLabelID := labelrelationshipFields[0].Descriptor()
  552. // labelrelationship.DefaultLabelID holds the default value on creation for the label_id field.
  553. labelrelationship.DefaultLabelID = labelrelationshipDescLabelID.Default.(uint64)
  554. // labelrelationshipDescContactID is the schema descriptor for contact_id field.
  555. labelrelationshipDescContactID := labelrelationshipFields[1].Descriptor()
  556. // labelrelationship.DefaultContactID holds the default value on creation for the contact_id field.
  557. labelrelationship.DefaultContactID = labelrelationshipDescContactID.Default.(uint64)
  558. // labelrelationshipDescOrganizationID is the schema descriptor for organization_id field.
  559. labelrelationshipDescOrganizationID := labelrelationshipFields[2].Descriptor()
  560. // labelrelationship.DefaultOrganizationID holds the default value on creation for the organization_id field.
  561. labelrelationship.DefaultOrganizationID = labelrelationshipDescOrganizationID.Default.(uint64)
  562. messageFields := schema.Message{}.Fields()
  563. _ = messageFields
  564. // messageDescWxWxid is the schema descriptor for wx_wxid field.
  565. messageDescWxWxid := messageFields[0].Descriptor()
  566. // message.DefaultWxWxid holds the default value on creation for the wx_wxid field.
  567. message.DefaultWxWxid = messageDescWxWxid.Default.(string)
  568. // messageDescWxid is the schema descriptor for wxid field.
  569. messageDescWxid := messageFields[1].Descriptor()
  570. // message.DefaultWxid holds the default value on creation for the wxid field.
  571. message.DefaultWxid = messageDescWxid.Default.(string)
  572. // messageDescContent is the schema descriptor for content field.
  573. messageDescContent := messageFields[2].Descriptor()
  574. // message.DefaultContent holds the default value on creation for the content field.
  575. message.DefaultContent = messageDescContent.Default.(string)
  576. messagerecordsMixin := schema.MessageRecords{}.Mixin()
  577. messagerecordsMixinFields0 := messagerecordsMixin[0].Fields()
  578. _ = messagerecordsMixinFields0
  579. messagerecordsMixinFields1 := messagerecordsMixin[1].Fields()
  580. _ = messagerecordsMixinFields1
  581. messagerecordsFields := schema.MessageRecords{}.Fields()
  582. _ = messagerecordsFields
  583. // messagerecordsDescCreatedAt is the schema descriptor for created_at field.
  584. messagerecordsDescCreatedAt := messagerecordsMixinFields0[1].Descriptor()
  585. // messagerecords.DefaultCreatedAt holds the default value on creation for the created_at field.
  586. messagerecords.DefaultCreatedAt = messagerecordsDescCreatedAt.Default.(func() time.Time)
  587. // messagerecordsDescUpdatedAt is the schema descriptor for updated_at field.
  588. messagerecordsDescUpdatedAt := messagerecordsMixinFields0[2].Descriptor()
  589. // messagerecords.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  590. messagerecords.DefaultUpdatedAt = messagerecordsDescUpdatedAt.Default.(func() time.Time)
  591. // messagerecords.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  592. messagerecords.UpdateDefaultUpdatedAt = messagerecordsDescUpdatedAt.UpdateDefault.(func() time.Time)
  593. // messagerecordsDescStatus is the schema descriptor for status field.
  594. messagerecordsDescStatus := messagerecordsMixinFields1[0].Descriptor()
  595. // messagerecords.DefaultStatus holds the default value on creation for the status field.
  596. messagerecords.DefaultStatus = messagerecordsDescStatus.Default.(uint8)
  597. // messagerecordsDescContactType is the schema descriptor for contact_type field.
  598. messagerecordsDescContactType := messagerecordsFields[2].Descriptor()
  599. // messagerecords.DefaultContactType holds the default value on creation for the contact_type field.
  600. messagerecords.DefaultContactType = messagerecordsDescContactType.Default.(int)
  601. // messagerecordsDescContactWxid is the schema descriptor for contact_wxid field.
  602. messagerecordsDescContactWxid := messagerecordsFields[3].Descriptor()
  603. // messagerecords.DefaultContactWxid holds the default value on creation for the contact_wxid field.
  604. messagerecords.DefaultContactWxid = messagerecordsDescContactWxid.Default.(string)
  605. // messagerecordsDescContentType is the schema descriptor for content_type field.
  606. messagerecordsDescContentType := messagerecordsFields[4].Descriptor()
  607. // messagerecords.DefaultContentType holds the default value on creation for the content_type field.
  608. messagerecords.DefaultContentType = messagerecordsDescContentType.Default.(int)
  609. // messagerecordsDescContent is the schema descriptor for content field.
  610. messagerecordsDescContent := messagerecordsFields[5].Descriptor()
  611. // messagerecords.DefaultContent holds the default value on creation for the content field.
  612. messagerecords.DefaultContent = messagerecordsDescContent.Default.(string)
  613. // messagerecordsDescErrorDetail is the schema descriptor for error_detail field.
  614. messagerecordsDescErrorDetail := messagerecordsFields[7].Descriptor()
  615. // messagerecords.DefaultErrorDetail holds the default value on creation for the error_detail field.
  616. messagerecords.DefaultErrorDetail = messagerecordsDescErrorDetail.Default.(string)
  617. // messagerecordsDescSourceType is the schema descriptor for source_type field.
  618. messagerecordsDescSourceType := messagerecordsFields[9].Descriptor()
  619. // messagerecords.DefaultSourceType holds the default value on creation for the source_type field.
  620. messagerecords.DefaultSourceType = messagerecordsDescSourceType.Default.(int)
  621. // messagerecordsDescSourceID is the schema descriptor for source_id field.
  622. messagerecordsDescSourceID := messagerecordsFields[10].Descriptor()
  623. // messagerecords.DefaultSourceID holds the default value on creation for the source_id field.
  624. messagerecords.DefaultSourceID = messagerecordsDescSourceID.Default.(uint64)
  625. // messagerecordsDescSubSourceID is the schema descriptor for sub_source_id field.
  626. messagerecordsDescSubSourceID := messagerecordsFields[11].Descriptor()
  627. // messagerecords.DefaultSubSourceID holds the default value on creation for the sub_source_id field.
  628. messagerecords.DefaultSubSourceID = messagerecordsDescSubSourceID.Default.(uint64)
  629. // messagerecordsDescOrganizationID is the schema descriptor for organization_id field.
  630. messagerecordsDescOrganizationID := messagerecordsFields[12].Descriptor()
  631. // messagerecords.DefaultOrganizationID holds the default value on creation for the organization_id field.
  632. messagerecords.DefaultOrganizationID = messagerecordsDescOrganizationID.Default.(uint64)
  633. msgMixin := schema.Msg{}.Mixin()
  634. msgMixinHooks1 := msgMixin[1].Hooks()
  635. msg.Hooks[0] = msgMixinHooks1[0]
  636. msgMixinInters1 := msgMixin[1].Interceptors()
  637. msg.Interceptors[0] = msgMixinInters1[0]
  638. msgMixinFields0 := msgMixin[0].Fields()
  639. _ = msgMixinFields0
  640. msgFields := schema.Msg{}.Fields()
  641. _ = msgFields
  642. // msgDescCreatedAt is the schema descriptor for created_at field.
  643. msgDescCreatedAt := msgMixinFields0[1].Descriptor()
  644. // msg.DefaultCreatedAt holds the default value on creation for the created_at field.
  645. msg.DefaultCreatedAt = msgDescCreatedAt.Default.(func() time.Time)
  646. // msgDescUpdatedAt is the schema descriptor for updated_at field.
  647. msgDescUpdatedAt := msgMixinFields0[2].Descriptor()
  648. // msg.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  649. msg.DefaultUpdatedAt = msgDescUpdatedAt.Default.(func() time.Time)
  650. // msg.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  651. msg.UpdateDefaultUpdatedAt = msgDescUpdatedAt.UpdateDefault.(func() time.Time)
  652. serverMixin := schema.Server{}.Mixin()
  653. serverMixinHooks2 := serverMixin[2].Hooks()
  654. server.Hooks[0] = serverMixinHooks2[0]
  655. serverMixinInters2 := serverMixin[2].Interceptors()
  656. server.Interceptors[0] = serverMixinInters2[0]
  657. serverMixinFields0 := serverMixin[0].Fields()
  658. _ = serverMixinFields0
  659. serverMixinFields1 := serverMixin[1].Fields()
  660. _ = serverMixinFields1
  661. serverFields := schema.Server{}.Fields()
  662. _ = serverFields
  663. // serverDescCreatedAt is the schema descriptor for created_at field.
  664. serverDescCreatedAt := serverMixinFields0[1].Descriptor()
  665. // server.DefaultCreatedAt holds the default value on creation for the created_at field.
  666. server.DefaultCreatedAt = serverDescCreatedAt.Default.(func() time.Time)
  667. // serverDescUpdatedAt is the schema descriptor for updated_at field.
  668. serverDescUpdatedAt := serverMixinFields0[2].Descriptor()
  669. // server.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  670. server.DefaultUpdatedAt = serverDescUpdatedAt.Default.(func() time.Time)
  671. // server.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  672. server.UpdateDefaultUpdatedAt = serverDescUpdatedAt.UpdateDefault.(func() time.Time)
  673. // serverDescStatus is the schema descriptor for status field.
  674. serverDescStatus := serverMixinFields1[0].Descriptor()
  675. // server.DefaultStatus holds the default value on creation for the status field.
  676. server.DefaultStatus = serverDescStatus.Default.(uint8)
  677. sopnodeMixin := schema.SopNode{}.Mixin()
  678. sopnodeMixinHooks2 := sopnodeMixin[2].Hooks()
  679. sopnode.Hooks[0] = sopnodeMixinHooks2[0]
  680. sopnodeMixinInters2 := sopnodeMixin[2].Interceptors()
  681. sopnode.Interceptors[0] = sopnodeMixinInters2[0]
  682. sopnodeMixinFields0 := sopnodeMixin[0].Fields()
  683. _ = sopnodeMixinFields0
  684. sopnodeMixinFields1 := sopnodeMixin[1].Fields()
  685. _ = sopnodeMixinFields1
  686. sopnodeFields := schema.SopNode{}.Fields()
  687. _ = sopnodeFields
  688. // sopnodeDescCreatedAt is the schema descriptor for created_at field.
  689. sopnodeDescCreatedAt := sopnodeMixinFields0[1].Descriptor()
  690. // sopnode.DefaultCreatedAt holds the default value on creation for the created_at field.
  691. sopnode.DefaultCreatedAt = sopnodeDescCreatedAt.Default.(func() time.Time)
  692. // sopnodeDescUpdatedAt is the schema descriptor for updated_at field.
  693. sopnodeDescUpdatedAt := sopnodeMixinFields0[2].Descriptor()
  694. // sopnode.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  695. sopnode.DefaultUpdatedAt = sopnodeDescUpdatedAt.Default.(func() time.Time)
  696. // sopnode.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  697. sopnode.UpdateDefaultUpdatedAt = sopnodeDescUpdatedAt.UpdateDefault.(func() time.Time)
  698. // sopnodeDescStatus is the schema descriptor for status field.
  699. sopnodeDescStatus := sopnodeMixinFields1[0].Descriptor()
  700. // sopnode.DefaultStatus holds the default value on creation for the status field.
  701. sopnode.DefaultStatus = sopnodeDescStatus.Default.(uint8)
  702. // sopnodeDescName is the schema descriptor for name field.
  703. sopnodeDescName := sopnodeFields[2].Descriptor()
  704. // sopnode.DefaultName holds the default value on creation for the name field.
  705. sopnode.DefaultName = sopnodeDescName.Default.(string)
  706. // sopnodeDescConditionType is the schema descriptor for condition_type field.
  707. sopnodeDescConditionType := sopnodeFields[3].Descriptor()
  708. // sopnode.DefaultConditionType holds the default value on creation for the condition_type field.
  709. sopnode.DefaultConditionType = sopnodeDescConditionType.Default.(int)
  710. // sopnodeDescNoReplyCondition is the schema descriptor for no_reply_condition field.
  711. sopnodeDescNoReplyCondition := sopnodeFields[5].Descriptor()
  712. // sopnode.DefaultNoReplyCondition holds the default value on creation for the no_reply_condition field.
  713. sopnode.DefaultNoReplyCondition = sopnodeDescNoReplyCondition.Default.(uint64)
  714. // sopnodeDescNoReplyUnit is the schema descriptor for no_reply_unit field.
  715. sopnodeDescNoReplyUnit := sopnodeFields[6].Descriptor()
  716. // sopnode.DefaultNoReplyUnit holds the default value on creation for the no_reply_unit field.
  717. sopnode.DefaultNoReplyUnit = sopnodeDescNoReplyUnit.Default.(string)
  718. sopstageMixin := schema.SopStage{}.Mixin()
  719. sopstageMixinHooks2 := sopstageMixin[2].Hooks()
  720. sopstage.Hooks[0] = sopstageMixinHooks2[0]
  721. sopstageMixinInters2 := sopstageMixin[2].Interceptors()
  722. sopstage.Interceptors[0] = sopstageMixinInters2[0]
  723. sopstageMixinFields0 := sopstageMixin[0].Fields()
  724. _ = sopstageMixinFields0
  725. sopstageMixinFields1 := sopstageMixin[1].Fields()
  726. _ = sopstageMixinFields1
  727. sopstageFields := schema.SopStage{}.Fields()
  728. _ = sopstageFields
  729. // sopstageDescCreatedAt is the schema descriptor for created_at field.
  730. sopstageDescCreatedAt := sopstageMixinFields0[1].Descriptor()
  731. // sopstage.DefaultCreatedAt holds the default value on creation for the created_at field.
  732. sopstage.DefaultCreatedAt = sopstageDescCreatedAt.Default.(func() time.Time)
  733. // sopstageDescUpdatedAt is the schema descriptor for updated_at field.
  734. sopstageDescUpdatedAt := sopstageMixinFields0[2].Descriptor()
  735. // sopstage.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  736. sopstage.DefaultUpdatedAt = sopstageDescUpdatedAt.Default.(func() time.Time)
  737. // sopstage.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  738. sopstage.UpdateDefaultUpdatedAt = sopstageDescUpdatedAt.UpdateDefault.(func() time.Time)
  739. // sopstageDescStatus is the schema descriptor for status field.
  740. sopstageDescStatus := sopstageMixinFields1[0].Descriptor()
  741. // sopstage.DefaultStatus holds the default value on creation for the status field.
  742. sopstage.DefaultStatus = sopstageDescStatus.Default.(uint8)
  743. // sopstageDescName is the schema descriptor for name field.
  744. sopstageDescName := sopstageFields[1].Descriptor()
  745. // sopstage.DefaultName holds the default value on creation for the name field.
  746. sopstage.DefaultName = sopstageDescName.Default.(string)
  747. // sopstageDescConditionType is the schema descriptor for condition_type field.
  748. sopstageDescConditionType := sopstageFields[2].Descriptor()
  749. // sopstage.DefaultConditionType holds the default value on creation for the condition_type field.
  750. sopstage.DefaultConditionType = sopstageDescConditionType.Default.(int)
  751. // sopstageDescConditionOperator is the schema descriptor for condition_operator field.
  752. sopstageDescConditionOperator := sopstageFields[3].Descriptor()
  753. // sopstage.DefaultConditionOperator holds the default value on creation for the condition_operator field.
  754. sopstage.DefaultConditionOperator = sopstageDescConditionOperator.Default.(int)
  755. // sopstageDescIndexSort is the schema descriptor for index_sort field.
  756. sopstageDescIndexSort := sopstageFields[9].Descriptor()
  757. // sopstage.DefaultIndexSort holds the default value on creation for the index_sort field.
  758. sopstage.DefaultIndexSort = sopstageDescIndexSort.Default.(int)
  759. soptaskMixin := schema.SopTask{}.Mixin()
  760. soptaskMixinHooks2 := soptaskMixin[2].Hooks()
  761. soptask.Hooks[0] = soptaskMixinHooks2[0]
  762. soptaskMixinInters2 := soptaskMixin[2].Interceptors()
  763. soptask.Interceptors[0] = soptaskMixinInters2[0]
  764. soptaskMixinFields0 := soptaskMixin[0].Fields()
  765. _ = soptaskMixinFields0
  766. soptaskMixinFields1 := soptaskMixin[1].Fields()
  767. _ = soptaskMixinFields1
  768. soptaskFields := schema.SopTask{}.Fields()
  769. _ = soptaskFields
  770. // soptaskDescCreatedAt is the schema descriptor for created_at field.
  771. soptaskDescCreatedAt := soptaskMixinFields0[1].Descriptor()
  772. // soptask.DefaultCreatedAt holds the default value on creation for the created_at field.
  773. soptask.DefaultCreatedAt = soptaskDescCreatedAt.Default.(func() time.Time)
  774. // soptaskDescUpdatedAt is the schema descriptor for updated_at field.
  775. soptaskDescUpdatedAt := soptaskMixinFields0[2].Descriptor()
  776. // soptask.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  777. soptask.DefaultUpdatedAt = soptaskDescUpdatedAt.Default.(func() time.Time)
  778. // soptask.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  779. soptask.UpdateDefaultUpdatedAt = soptaskDescUpdatedAt.UpdateDefault.(func() time.Time)
  780. // soptaskDescStatus is the schema descriptor for status field.
  781. soptaskDescStatus := soptaskMixinFields1[0].Descriptor()
  782. // soptask.DefaultStatus holds the default value on creation for the status field.
  783. soptask.DefaultStatus = soptaskDescStatus.Default.(uint8)
  784. // soptaskDescName is the schema descriptor for name field.
  785. soptaskDescName := soptaskFields[0].Descriptor()
  786. // soptask.NameValidator is a validator for the "name" field. It is called by the builders before save.
  787. soptask.NameValidator = soptaskDescName.Validators[0].(func(string) error)
  788. // soptaskDescType is the schema descriptor for type field.
  789. soptaskDescType := soptaskFields[2].Descriptor()
  790. // soptask.DefaultType holds the default value on creation for the type field.
  791. soptask.DefaultType = soptaskDescType.Default.(int)
  792. // soptaskDescOrganizationID is the schema descriptor for organization_id field.
  793. soptaskDescOrganizationID := soptaskFields[6].Descriptor()
  794. // soptask.DefaultOrganizationID holds the default value on creation for the organization_id field.
  795. soptask.DefaultOrganizationID = soptaskDescOrganizationID.Default.(uint64)
  796. tokenMixin := schema.Token{}.Mixin()
  797. tokenMixinHooks1 := tokenMixin[1].Hooks()
  798. token.Hooks[0] = tokenMixinHooks1[0]
  799. tokenMixinInters1 := tokenMixin[1].Interceptors()
  800. token.Interceptors[0] = tokenMixinInters1[0]
  801. tokenMixinFields0 := tokenMixin[0].Fields()
  802. _ = tokenMixinFields0
  803. tokenFields := schema.Token{}.Fields()
  804. _ = tokenFields
  805. // tokenDescCreatedAt is the schema descriptor for created_at field.
  806. tokenDescCreatedAt := tokenMixinFields0[1].Descriptor()
  807. // token.DefaultCreatedAt holds the default value on creation for the created_at field.
  808. token.DefaultCreatedAt = tokenDescCreatedAt.Default.(func() time.Time)
  809. // tokenDescUpdatedAt is the schema descriptor for updated_at field.
  810. tokenDescUpdatedAt := tokenMixinFields0[2].Descriptor()
  811. // token.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  812. token.DefaultUpdatedAt = tokenDescUpdatedAt.Default.(func() time.Time)
  813. // token.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  814. token.UpdateDefaultUpdatedAt = tokenDescUpdatedAt.UpdateDefault.(func() time.Time)
  815. // tokenDescToken is the schema descriptor for token field.
  816. tokenDescToken := tokenFields[1].Descriptor()
  817. // token.DefaultToken holds the default value on creation for the token field.
  818. token.DefaultToken = tokenDescToken.Default.(string)
  819. // tokenDescMAC is the schema descriptor for mac field.
  820. tokenDescMAC := tokenFields[2].Descriptor()
  821. // token.DefaultMAC holds the default value on creation for the mac field.
  822. token.DefaultMAC = tokenDescMAC.Default.(string)
  823. tutorialMixin := schema.Tutorial{}.Mixin()
  824. tutorialMixinHooks1 := tutorialMixin[1].Hooks()
  825. tutorial.Hooks[0] = tutorialMixinHooks1[0]
  826. tutorialMixinInters1 := tutorialMixin[1].Interceptors()
  827. tutorial.Interceptors[0] = tutorialMixinInters1[0]
  828. tutorialMixinFields0 := tutorialMixin[0].Fields()
  829. _ = tutorialMixinFields0
  830. tutorialFields := schema.Tutorial{}.Fields()
  831. _ = tutorialFields
  832. // tutorialDescCreatedAt is the schema descriptor for created_at field.
  833. tutorialDescCreatedAt := tutorialMixinFields0[1].Descriptor()
  834. // tutorial.DefaultCreatedAt holds the default value on creation for the created_at field.
  835. tutorial.DefaultCreatedAt = tutorialDescCreatedAt.Default.(func() time.Time)
  836. // tutorialDescUpdatedAt is the schema descriptor for updated_at field.
  837. tutorialDescUpdatedAt := tutorialMixinFields0[2].Descriptor()
  838. // tutorial.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  839. tutorial.DefaultUpdatedAt = tutorialDescUpdatedAt.Default.(func() time.Time)
  840. // tutorial.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  841. tutorial.UpdateDefaultUpdatedAt = tutorialDescUpdatedAt.UpdateDefault.(func() time.Time)
  842. // tutorialDescEmployeeID is the schema descriptor for employee_id field.
  843. tutorialDescEmployeeID := tutorialFields[0].Descriptor()
  844. // tutorial.EmployeeIDValidator is a validator for the "employee_id" field. It is called by the builders before save.
  845. tutorial.EmployeeIDValidator = tutorialDescEmployeeID.Validators[0].(func(uint64) error)
  846. // tutorialDescOrganizationID is the schema descriptor for organization_id field.
  847. tutorialDescOrganizationID := tutorialFields[4].Descriptor()
  848. // tutorial.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  849. tutorial.OrganizationIDValidator = tutorialDescOrganizationID.Validators[0].(func(uint64) error)
  850. workexperienceMixin := schema.WorkExperience{}.Mixin()
  851. workexperienceMixinHooks1 := workexperienceMixin[1].Hooks()
  852. workexperience.Hooks[0] = workexperienceMixinHooks1[0]
  853. workexperienceMixinInters1 := workexperienceMixin[1].Interceptors()
  854. workexperience.Interceptors[0] = workexperienceMixinInters1[0]
  855. workexperienceMixinFields0 := workexperienceMixin[0].Fields()
  856. _ = workexperienceMixinFields0
  857. workexperienceFields := schema.WorkExperience{}.Fields()
  858. _ = workexperienceFields
  859. // workexperienceDescCreatedAt is the schema descriptor for created_at field.
  860. workexperienceDescCreatedAt := workexperienceMixinFields0[1].Descriptor()
  861. // workexperience.DefaultCreatedAt holds the default value on creation for the created_at field.
  862. workexperience.DefaultCreatedAt = workexperienceDescCreatedAt.Default.(func() time.Time)
  863. // workexperienceDescUpdatedAt is the schema descriptor for updated_at field.
  864. workexperienceDescUpdatedAt := workexperienceMixinFields0[2].Descriptor()
  865. // workexperience.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  866. workexperience.DefaultUpdatedAt = workexperienceDescUpdatedAt.Default.(func() time.Time)
  867. // workexperience.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  868. workexperience.UpdateDefaultUpdatedAt = workexperienceDescUpdatedAt.UpdateDefault.(func() time.Time)
  869. wxMixin := schema.Wx{}.Mixin()
  870. wxMixinHooks2 := wxMixin[2].Hooks()
  871. wx.Hooks[0] = wxMixinHooks2[0]
  872. wxMixinInters2 := wxMixin[2].Interceptors()
  873. wx.Interceptors[0] = wxMixinInters2[0]
  874. wxMixinFields0 := wxMixin[0].Fields()
  875. _ = wxMixinFields0
  876. wxMixinFields1 := wxMixin[1].Fields()
  877. _ = wxMixinFields1
  878. wxFields := schema.Wx{}.Fields()
  879. _ = wxFields
  880. // wxDescCreatedAt is the schema descriptor for created_at field.
  881. wxDescCreatedAt := wxMixinFields0[1].Descriptor()
  882. // wx.DefaultCreatedAt holds the default value on creation for the created_at field.
  883. wx.DefaultCreatedAt = wxDescCreatedAt.Default.(func() time.Time)
  884. // wxDescUpdatedAt is the schema descriptor for updated_at field.
  885. wxDescUpdatedAt := wxMixinFields0[2].Descriptor()
  886. // wx.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  887. wx.DefaultUpdatedAt = wxDescUpdatedAt.Default.(func() time.Time)
  888. // wx.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  889. wx.UpdateDefaultUpdatedAt = wxDescUpdatedAt.UpdateDefault.(func() time.Time)
  890. // wxDescStatus is the schema descriptor for status field.
  891. wxDescStatus := wxMixinFields1[0].Descriptor()
  892. // wx.DefaultStatus holds the default value on creation for the status field.
  893. wx.DefaultStatus = wxDescStatus.Default.(uint8)
  894. // wxDescServerID is the schema descriptor for server_id field.
  895. wxDescServerID := wxFields[0].Descriptor()
  896. // wx.DefaultServerID holds the default value on creation for the server_id field.
  897. wx.DefaultServerID = wxDescServerID.Default.(uint64)
  898. // wxDescPort is the schema descriptor for port field.
  899. wxDescPort := wxFields[1].Descriptor()
  900. // wx.DefaultPort holds the default value on creation for the port field.
  901. wx.DefaultPort = wxDescPort.Default.(string)
  902. // wxDescProcessID is the schema descriptor for process_id field.
  903. wxDescProcessID := wxFields[2].Descriptor()
  904. // wx.DefaultProcessID holds the default value on creation for the process_id field.
  905. wx.DefaultProcessID = wxDescProcessID.Default.(string)
  906. // wxDescCallback is the schema descriptor for callback field.
  907. wxDescCallback := wxFields[3].Descriptor()
  908. // wx.DefaultCallback holds the default value on creation for the callback field.
  909. wx.DefaultCallback = wxDescCallback.Default.(string)
  910. // wxDescWxid is the schema descriptor for wxid field.
  911. wxDescWxid := wxFields[4].Descriptor()
  912. // wx.DefaultWxid holds the default value on creation for the wxid field.
  913. wx.DefaultWxid = wxDescWxid.Default.(string)
  914. // wxDescAccount is the schema descriptor for account field.
  915. wxDescAccount := wxFields[5].Descriptor()
  916. // wx.DefaultAccount holds the default value on creation for the account field.
  917. wx.DefaultAccount = wxDescAccount.Default.(string)
  918. // wxDescNickname is the schema descriptor for nickname field.
  919. wxDescNickname := wxFields[6].Descriptor()
  920. // wx.DefaultNickname holds the default value on creation for the nickname field.
  921. wx.DefaultNickname = wxDescNickname.Default.(string)
  922. // wxDescTel is the schema descriptor for tel field.
  923. wxDescTel := wxFields[7].Descriptor()
  924. // wx.DefaultTel holds the default value on creation for the tel field.
  925. wx.DefaultTel = wxDescTel.Default.(string)
  926. // wxDescHeadBig is the schema descriptor for head_big field.
  927. wxDescHeadBig := wxFields[8].Descriptor()
  928. // wx.DefaultHeadBig holds the default value on creation for the head_big field.
  929. wx.DefaultHeadBig = wxDescHeadBig.Default.(string)
  930. // wxDescOrganizationID is the schema descriptor for organization_id field.
  931. wxDescOrganizationID := wxFields[9].Descriptor()
  932. // wx.DefaultOrganizationID holds the default value on creation for the organization_id field.
  933. wx.DefaultOrganizationID = wxDescOrganizationID.Default.(uint64)
  934. // wxDescAgentID is the schema descriptor for agent_id field.
  935. wxDescAgentID := wxFields[10].Descriptor()
  936. // wx.DefaultAgentID holds the default value on creation for the agent_id field.
  937. wx.DefaultAgentID = wxDescAgentID.Default.(uint64)
  938. // wxDescAPIBase is the schema descriptor for api_base field.
  939. wxDescAPIBase := wxFields[11].Descriptor()
  940. // wx.DefaultAPIBase holds the default value on creation for the api_base field.
  941. wx.DefaultAPIBase = wxDescAPIBase.Default.(string)
  942. // wxDescAPIKey is the schema descriptor for api_key field.
  943. wxDescAPIKey := wxFields[12].Descriptor()
  944. // wx.DefaultAPIKey holds the default value on creation for the api_key field.
  945. wx.DefaultAPIKey = wxDescAPIKey.Default.(string)
  946. wxcardMixin := schema.WxCard{}.Mixin()
  947. wxcardMixinHooks1 := wxcardMixin[1].Hooks()
  948. wxcard.Hooks[0] = wxcardMixinHooks1[0]
  949. wxcardMixinInters1 := wxcardMixin[1].Interceptors()
  950. wxcard.Interceptors[0] = wxcardMixinInters1[0]
  951. wxcardMixinFields0 := wxcardMixin[0].Fields()
  952. _ = wxcardMixinFields0
  953. wxcardFields := schema.WxCard{}.Fields()
  954. _ = wxcardFields
  955. // wxcardDescCreatedAt is the schema descriptor for created_at field.
  956. wxcardDescCreatedAt := wxcardMixinFields0[1].Descriptor()
  957. // wxcard.DefaultCreatedAt holds the default value on creation for the created_at field.
  958. wxcard.DefaultCreatedAt = wxcardDescCreatedAt.Default.(func() time.Time)
  959. // wxcardDescUpdatedAt is the schema descriptor for updated_at field.
  960. wxcardDescUpdatedAt := wxcardMixinFields0[2].Descriptor()
  961. // wxcard.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  962. wxcard.DefaultUpdatedAt = wxcardDescUpdatedAt.Default.(func() time.Time)
  963. // wxcard.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  964. wxcard.UpdateDefaultUpdatedAt = wxcardDescUpdatedAt.UpdateDefault.(func() time.Time)
  965. // wxcardDescUserID is the schema descriptor for user_id field.
  966. wxcardDescUserID := wxcardFields[0].Descriptor()
  967. // wxcard.DefaultUserID holds the default value on creation for the user_id field.
  968. wxcard.DefaultUserID = wxcardDescUserID.Default.(uint64)
  969. // wxcardDescWxUserID is the schema descriptor for wx_user_id field.
  970. wxcardDescWxUserID := wxcardFields[1].Descriptor()
  971. // wxcard.DefaultWxUserID holds the default value on creation for the wx_user_id field.
  972. wxcard.DefaultWxUserID = wxcardDescWxUserID.Default.(uint64)
  973. // wxcardDescAvatar is the schema descriptor for avatar field.
  974. wxcardDescAvatar := wxcardFields[2].Descriptor()
  975. // wxcard.DefaultAvatar holds the default value on creation for the avatar field.
  976. wxcard.DefaultAvatar = wxcardDescAvatar.Default.(string)
  977. // wxcardDescLogo is the schema descriptor for logo field.
  978. wxcardDescLogo := wxcardFields[3].Descriptor()
  979. // wxcard.DefaultLogo holds the default value on creation for the logo field.
  980. wxcard.DefaultLogo = wxcardDescLogo.Default.(string)
  981. // wxcardDescName is the schema descriptor for name field.
  982. wxcardDescName := wxcardFields[4].Descriptor()
  983. // wxcard.DefaultName holds the default value on creation for the name field.
  984. wxcard.DefaultName = wxcardDescName.Default.(string)
  985. // wxcardDescCompany is the schema descriptor for company field.
  986. wxcardDescCompany := wxcardFields[5].Descriptor()
  987. // wxcard.DefaultCompany holds the default value on creation for the company field.
  988. wxcard.DefaultCompany = wxcardDescCompany.Default.(string)
  989. // wxcardDescAddress is the schema descriptor for address field.
  990. wxcardDescAddress := wxcardFields[6].Descriptor()
  991. // wxcard.DefaultAddress holds the default value on creation for the address field.
  992. wxcard.DefaultAddress = wxcardDescAddress.Default.(string)
  993. // wxcardDescPhone is the schema descriptor for phone field.
  994. wxcardDescPhone := wxcardFields[7].Descriptor()
  995. // wxcard.DefaultPhone holds the default value on creation for the phone field.
  996. wxcard.DefaultPhone = wxcardDescPhone.Default.(string)
  997. // wxcardDescOfficialAccount is the schema descriptor for official_account field.
  998. wxcardDescOfficialAccount := wxcardFields[8].Descriptor()
  999. // wxcard.DefaultOfficialAccount holds the default value on creation for the official_account field.
  1000. wxcard.DefaultOfficialAccount = wxcardDescOfficialAccount.Default.(string)
  1001. // wxcardDescWechatAccount is the schema descriptor for wechat_account field.
  1002. wxcardDescWechatAccount := wxcardFields[9].Descriptor()
  1003. // wxcard.DefaultWechatAccount holds the default value on creation for the wechat_account field.
  1004. wxcard.DefaultWechatAccount = wxcardDescWechatAccount.Default.(string)
  1005. // wxcardDescEmail is the schema descriptor for email field.
  1006. wxcardDescEmail := wxcardFields[10].Descriptor()
  1007. // wxcard.DefaultEmail holds the default value on creation for the email field.
  1008. wxcard.DefaultEmail = wxcardDescEmail.Default.(string)
  1009. // wxcardDescIntro is the schema descriptor for intro field.
  1010. wxcardDescIntro := wxcardFields[14].Descriptor()
  1011. // wxcard.DefaultIntro holds the default value on creation for the intro field.
  1012. wxcard.DefaultIntro = wxcardDescIntro.Default.(string)
  1013. wxcarduserMixin := schema.WxCardUser{}.Mixin()
  1014. wxcarduserMixinHooks1 := wxcarduserMixin[1].Hooks()
  1015. wxcarduser.Hooks[0] = wxcarduserMixinHooks1[0]
  1016. wxcarduserMixinInters1 := wxcarduserMixin[1].Interceptors()
  1017. wxcarduser.Interceptors[0] = wxcarduserMixinInters1[0]
  1018. wxcarduserMixinFields0 := wxcarduserMixin[0].Fields()
  1019. _ = wxcarduserMixinFields0
  1020. wxcarduserFields := schema.WxCardUser{}.Fields()
  1021. _ = wxcarduserFields
  1022. // wxcarduserDescCreatedAt is the schema descriptor for created_at field.
  1023. wxcarduserDescCreatedAt := wxcarduserMixinFields0[1].Descriptor()
  1024. // wxcarduser.DefaultCreatedAt holds the default value on creation for the created_at field.
  1025. wxcarduser.DefaultCreatedAt = wxcarduserDescCreatedAt.Default.(func() time.Time)
  1026. // wxcarduserDescUpdatedAt is the schema descriptor for updated_at field.
  1027. wxcarduserDescUpdatedAt := wxcarduserMixinFields0[2].Descriptor()
  1028. // wxcarduser.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1029. wxcarduser.DefaultUpdatedAt = wxcarduserDescUpdatedAt.Default.(func() time.Time)
  1030. // wxcarduser.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1031. wxcarduser.UpdateDefaultUpdatedAt = wxcarduserDescUpdatedAt.UpdateDefault.(func() time.Time)
  1032. // wxcarduserDescWxid is the schema descriptor for wxid field.
  1033. wxcarduserDescWxid := wxcarduserFields[0].Descriptor()
  1034. // wxcarduser.DefaultWxid holds the default value on creation for the wxid field.
  1035. wxcarduser.DefaultWxid = wxcarduserDescWxid.Default.(string)
  1036. // wxcarduserDescAccount is the schema descriptor for account field.
  1037. wxcarduserDescAccount := wxcarduserFields[1].Descriptor()
  1038. // wxcarduser.DefaultAccount holds the default value on creation for the account field.
  1039. wxcarduser.DefaultAccount = wxcarduserDescAccount.Default.(string)
  1040. // wxcarduserDescAvatar is the schema descriptor for avatar field.
  1041. wxcarduserDescAvatar := wxcarduserFields[2].Descriptor()
  1042. // wxcarduser.DefaultAvatar holds the default value on creation for the avatar field.
  1043. wxcarduser.DefaultAvatar = wxcarduserDescAvatar.Default.(string)
  1044. // wxcarduserDescNickname is the schema descriptor for nickname field.
  1045. wxcarduserDescNickname := wxcarduserFields[3].Descriptor()
  1046. // wxcarduser.DefaultNickname holds the default value on creation for the nickname field.
  1047. wxcarduser.DefaultNickname = wxcarduserDescNickname.Default.(string)
  1048. // wxcarduserDescRemark is the schema descriptor for remark field.
  1049. wxcarduserDescRemark := wxcarduserFields[4].Descriptor()
  1050. // wxcarduser.DefaultRemark holds the default value on creation for the remark field.
  1051. wxcarduser.DefaultRemark = wxcarduserDescRemark.Default.(string)
  1052. // wxcarduserDescPhone is the schema descriptor for phone field.
  1053. wxcarduserDescPhone := wxcarduserFields[5].Descriptor()
  1054. // wxcarduser.DefaultPhone holds the default value on creation for the phone field.
  1055. wxcarduser.DefaultPhone = wxcarduserDescPhone.Default.(string)
  1056. // wxcarduserDescOpenID is the schema descriptor for open_id field.
  1057. wxcarduserDescOpenID := wxcarduserFields[6].Descriptor()
  1058. // wxcarduser.DefaultOpenID holds the default value on creation for the open_id field.
  1059. wxcarduser.DefaultOpenID = wxcarduserDescOpenID.Default.(string)
  1060. // wxcarduserDescUnionID is the schema descriptor for union_id field.
  1061. wxcarduserDescUnionID := wxcarduserFields[7].Descriptor()
  1062. // wxcarduser.DefaultUnionID holds the default value on creation for the union_id field.
  1063. wxcarduser.DefaultUnionID = wxcarduserDescUnionID.Default.(string)
  1064. // wxcarduserDescSessionKey is the schema descriptor for session_key field.
  1065. wxcarduserDescSessionKey := wxcarduserFields[8].Descriptor()
  1066. // wxcarduser.DefaultSessionKey holds the default value on creation for the session_key field.
  1067. wxcarduser.DefaultSessionKey = wxcarduserDescSessionKey.Default.(string)
  1068. wxcardvisitMixin := schema.WxCardVisit{}.Mixin()
  1069. wxcardvisitMixinHooks1 := wxcardvisitMixin[1].Hooks()
  1070. wxcardvisit.Hooks[0] = wxcardvisitMixinHooks1[0]
  1071. wxcardvisitMixinInters1 := wxcardvisitMixin[1].Interceptors()
  1072. wxcardvisit.Interceptors[0] = wxcardvisitMixinInters1[0]
  1073. wxcardvisitMixinFields0 := wxcardvisitMixin[0].Fields()
  1074. _ = wxcardvisitMixinFields0
  1075. wxcardvisitFields := schema.WxCardVisit{}.Fields()
  1076. _ = wxcardvisitFields
  1077. // wxcardvisitDescCreatedAt is the schema descriptor for created_at field.
  1078. wxcardvisitDescCreatedAt := wxcardvisitMixinFields0[1].Descriptor()
  1079. // wxcardvisit.DefaultCreatedAt holds the default value on creation for the created_at field.
  1080. wxcardvisit.DefaultCreatedAt = wxcardvisitDescCreatedAt.Default.(func() time.Time)
  1081. // wxcardvisitDescUpdatedAt is the schema descriptor for updated_at field.
  1082. wxcardvisitDescUpdatedAt := wxcardvisitMixinFields0[2].Descriptor()
  1083. // wxcardvisit.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1084. wxcardvisit.DefaultUpdatedAt = wxcardvisitDescUpdatedAt.Default.(func() time.Time)
  1085. // wxcardvisit.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1086. wxcardvisit.UpdateDefaultUpdatedAt = wxcardvisitDescUpdatedAt.UpdateDefault.(func() time.Time)
  1087. // wxcardvisitDescUserID is the schema descriptor for user_id field.
  1088. wxcardvisitDescUserID := wxcardvisitFields[0].Descriptor()
  1089. // wxcardvisit.DefaultUserID holds the default value on creation for the user_id field.
  1090. wxcardvisit.DefaultUserID = wxcardvisitDescUserID.Default.(uint64)
  1091. // wxcardvisitDescBotID is the schema descriptor for bot_id field.
  1092. wxcardvisitDescBotID := wxcardvisitFields[1].Descriptor()
  1093. // wxcardvisit.DefaultBotID holds the default value on creation for the bot_id field.
  1094. wxcardvisit.DefaultBotID = wxcardvisitDescBotID.Default.(uint64)
  1095. // wxcardvisitDescBotType is the schema descriptor for bot_type field.
  1096. wxcardvisitDescBotType := wxcardvisitFields[2].Descriptor()
  1097. // wxcardvisit.DefaultBotType holds the default value on creation for the bot_type field.
  1098. wxcardvisit.DefaultBotType = wxcardvisitDescBotType.Default.(uint8)
  1099. }
  1100. const (
  1101. Version = "v0.13.1" // Version of ent codegen.
  1102. Sum = "h1:uD8QwN1h6SNphdCCzmkMN3feSUzNnVvV/WIkHKMbzOE=" // Sum of ent codegen.
  1103. )