runtime.go 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007
  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/aliyunavatar"
  8. "wechat-api/ent/allocagent"
  9. "wechat-api/ent/apikey"
  10. "wechat-api/ent/batchmsg"
  11. "wechat-api/ent/category"
  12. "wechat-api/ent/chatrecords"
  13. "wechat-api/ent/chatsession"
  14. "wechat-api/ent/contact"
  15. "wechat-api/ent/contactfield"
  16. "wechat-api/ent/contactfieldtemplate"
  17. "wechat-api/ent/creditbalance"
  18. "wechat-api/ent/creditusage"
  19. "wechat-api/ent/employee"
  20. "wechat-api/ent/employeeconfig"
  21. "wechat-api/ent/label"
  22. "wechat-api/ent/labelrelationship"
  23. "wechat-api/ent/labeltagging"
  24. "wechat-api/ent/message"
  25. "wechat-api/ent/messagerecords"
  26. "wechat-api/ent/msg"
  27. "wechat-api/ent/payrecharge"
  28. "wechat-api/ent/schema"
  29. "wechat-api/ent/server"
  30. "wechat-api/ent/sopnode"
  31. "wechat-api/ent/sopstage"
  32. "wechat-api/ent/soptask"
  33. "wechat-api/ent/token"
  34. "wechat-api/ent/tutorial"
  35. "wechat-api/ent/usagedetail"
  36. "wechat-api/ent/usagestatisticday"
  37. "wechat-api/ent/usagestatistichour"
  38. "wechat-api/ent/usagestatisticmonth"
  39. "wechat-api/ent/usagetotal"
  40. "wechat-api/ent/whatsapp"
  41. "wechat-api/ent/whatsappchannel"
  42. "wechat-api/ent/workexperience"
  43. "wechat-api/ent/wpchatroom"
  44. "wechat-api/ent/wpchatroommember"
  45. "wechat-api/ent/wx"
  46. "wechat-api/ent/wxcard"
  47. "wechat-api/ent/wxcarduser"
  48. "wechat-api/ent/wxcardvisit"
  49. "wechat-api/ent/xunji"
  50. "wechat-api/ent/xunjiservice"
  51. )
  52. // The init function reads all schema descriptors with runtime code
  53. // (default values, validators, hooks and policies) and stitches it
  54. // to their package variables.
  55. func init() {
  56. agentMixin := schema.Agent{}.Mixin()
  57. agentMixinHooks1 := agentMixin[1].Hooks()
  58. agent.Hooks[0] = agentMixinHooks1[0]
  59. agentMixinInters1 := agentMixin[1].Interceptors()
  60. agent.Interceptors[0] = agentMixinInters1[0]
  61. agentMixinFields0 := agentMixin[0].Fields()
  62. _ = agentMixinFields0
  63. agentFields := schema.Agent{}.Fields()
  64. _ = agentFields
  65. // agentDescCreatedAt is the schema descriptor for created_at field.
  66. agentDescCreatedAt := agentMixinFields0[1].Descriptor()
  67. // agent.DefaultCreatedAt holds the default value on creation for the created_at field.
  68. agent.DefaultCreatedAt = agentDescCreatedAt.Default.(func() time.Time)
  69. // agentDescUpdatedAt is the schema descriptor for updated_at field.
  70. agentDescUpdatedAt := agentMixinFields0[2].Descriptor()
  71. // agent.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  72. agent.DefaultUpdatedAt = agentDescUpdatedAt.Default.(func() time.Time)
  73. // agent.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  74. agent.UpdateDefaultUpdatedAt = agentDescUpdatedAt.UpdateDefault.(func() time.Time)
  75. // agentDescName is the schema descriptor for name field.
  76. agentDescName := agentFields[0].Descriptor()
  77. // agent.NameValidator is a validator for the "name" field. It is called by the builders before save.
  78. agent.NameValidator = agentDescName.Validators[0].(func(string) error)
  79. // agentDescRole is the schema descriptor for role field.
  80. agentDescRole := agentFields[1].Descriptor()
  81. // agent.DefaultRole holds the default value on creation for the role field.
  82. agent.DefaultRole = agentDescRole.Default.(string)
  83. // agentDescStatus is the schema descriptor for status field.
  84. agentDescStatus := agentFields[2].Descriptor()
  85. // agent.DefaultStatus holds the default value on creation for the status field.
  86. agent.DefaultStatus = agentDescStatus.Default.(int)
  87. // agent.StatusValidator is a validator for the "status" field. It is called by the builders before save.
  88. agent.StatusValidator = agentDescStatus.Validators[0].(func(int) error)
  89. // agentDescBackground is the schema descriptor for background field.
  90. agentDescBackground := agentFields[3].Descriptor()
  91. // agent.DefaultBackground holds the default value on creation for the background field.
  92. agent.DefaultBackground = agentDescBackground.Default.(string)
  93. // agentDescExamples is the schema descriptor for examples field.
  94. agentDescExamples := agentFields[4].Descriptor()
  95. // agent.DefaultExamples holds the default value on creation for the examples field.
  96. agent.DefaultExamples = agentDescExamples.Default.(string)
  97. // agentDescOrganizationID is the schema descriptor for organization_id field.
  98. agentDescOrganizationID := agentFields[5].Descriptor()
  99. // agent.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  100. agent.OrganizationIDValidator = agentDescOrganizationID.Validators[0].(func(uint64) error)
  101. // agentDescDatasetID is the schema descriptor for dataset_id field.
  102. agentDescDatasetID := agentFields[6].Descriptor()
  103. // agent.DefaultDatasetID holds the default value on creation for the dataset_id field.
  104. agent.DefaultDatasetID = agentDescDatasetID.Default.(string)
  105. // agent.DatasetIDValidator is a validator for the "dataset_id" field. It is called by the builders before save.
  106. agent.DatasetIDValidator = agentDescDatasetID.Validators[0].(func(string) error)
  107. // agentDescCollectionID is the schema descriptor for collection_id field.
  108. agentDescCollectionID := agentFields[7].Descriptor()
  109. // agent.DefaultCollectionID holds the default value on creation for the collection_id field.
  110. agent.DefaultCollectionID = agentDescCollectionID.Default.(string)
  111. // agent.CollectionIDValidator is a validator for the "collection_id" field. It is called by the builders before save.
  112. agent.CollectionIDValidator = agentDescCollectionID.Validators[0].(func(string) error)
  113. // agentDescModel is the schema descriptor for model field.
  114. agentDescModel := agentFields[8].Descriptor()
  115. // agent.DefaultModel holds the default value on creation for the model field.
  116. agent.DefaultModel = agentDescModel.Default.(string)
  117. // agentDescAPIBase is the schema descriptor for api_base field.
  118. agentDescAPIBase := agentFields[9].Descriptor()
  119. // agent.DefaultAPIBase holds the default value on creation for the api_base field.
  120. agent.DefaultAPIBase = agentDescAPIBase.Default.(string)
  121. // agentDescAPIKey is the schema descriptor for api_key field.
  122. agentDescAPIKey := agentFields[10].Descriptor()
  123. // agent.DefaultAPIKey holds the default value on creation for the api_key field.
  124. agent.DefaultAPIKey = agentDescAPIKey.Default.(string)
  125. // agentDescType is the schema descriptor for type field.
  126. agentDescType := agentFields[11].Descriptor()
  127. // agent.DefaultType holds the default value on creation for the type field.
  128. agent.DefaultType = agentDescType.Default.(int)
  129. // agent.TypeValidator is a validator for the "type" field. It is called by the builders before save.
  130. agent.TypeValidator = agentDescType.Validators[0].(func(int) error)
  131. agentbaseFields := schema.AgentBase{}.Fields()
  132. _ = agentbaseFields
  133. // agentbaseDescQ is the schema descriptor for q field.
  134. agentbaseDescQ := agentbaseFields[1].Descriptor()
  135. // agentbase.DefaultQ holds the default value on creation for the q field.
  136. agentbase.DefaultQ = agentbaseDescQ.Default.(string)
  137. // agentbaseDescA is the schema descriptor for a field.
  138. agentbaseDescA := agentbaseFields[2].Descriptor()
  139. // agentbase.DefaultA holds the default value on creation for the a field.
  140. agentbase.DefaultA = agentbaseDescA.Default.(string)
  141. // agentbaseDescChunkIndex is the schema descriptor for chunk_index field.
  142. agentbaseDescChunkIndex := agentbaseFields[3].Descriptor()
  143. // agentbase.ChunkIndexValidator is a validator for the "chunk_index" field. It is called by the builders before save.
  144. agentbase.ChunkIndexValidator = agentbaseDescChunkIndex.Validators[0].(func(uint64) error)
  145. // agentbaseDescDatasetID is the schema descriptor for dataset_id field.
  146. agentbaseDescDatasetID := agentbaseFields[5].Descriptor()
  147. // agentbase.DefaultDatasetID holds the default value on creation for the dataset_id field.
  148. agentbase.DefaultDatasetID = agentbaseDescDatasetID.Default.(string)
  149. // agentbaseDescCollectionID is the schema descriptor for collection_id field.
  150. agentbaseDescCollectionID := agentbaseFields[6].Descriptor()
  151. // agentbase.DefaultCollectionID holds the default value on creation for the collection_id field.
  152. agentbase.DefaultCollectionID = agentbaseDescCollectionID.Default.(string)
  153. // agentbaseDescSourceName is the schema descriptor for source_name field.
  154. agentbaseDescSourceName := agentbaseFields[7].Descriptor()
  155. // agentbase.DefaultSourceName holds the default value on creation for the source_name field.
  156. agentbase.DefaultSourceName = agentbaseDescSourceName.Default.(string)
  157. aliyunavatarMixin := schema.AliyunAvatar{}.Mixin()
  158. aliyunavatarMixinHooks1 := aliyunavatarMixin[1].Hooks()
  159. aliyunavatar.Hooks[0] = aliyunavatarMixinHooks1[0]
  160. aliyunavatarMixinInters1 := aliyunavatarMixin[1].Interceptors()
  161. aliyunavatar.Interceptors[0] = aliyunavatarMixinInters1[0]
  162. aliyunavatarMixinFields0 := aliyunavatarMixin[0].Fields()
  163. _ = aliyunavatarMixinFields0
  164. aliyunavatarFields := schema.AliyunAvatar{}.Fields()
  165. _ = aliyunavatarFields
  166. // aliyunavatarDescCreatedAt is the schema descriptor for created_at field.
  167. aliyunavatarDescCreatedAt := aliyunavatarMixinFields0[1].Descriptor()
  168. // aliyunavatar.DefaultCreatedAt holds the default value on creation for the created_at field.
  169. aliyunavatar.DefaultCreatedAt = aliyunavatarDescCreatedAt.Default.(func() time.Time)
  170. // aliyunavatarDescUpdatedAt is the schema descriptor for updated_at field.
  171. aliyunavatarDescUpdatedAt := aliyunavatarMixinFields0[2].Descriptor()
  172. // aliyunavatar.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  173. aliyunavatar.DefaultUpdatedAt = aliyunavatarDescUpdatedAt.Default.(func() time.Time)
  174. // aliyunavatar.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  175. aliyunavatar.UpdateDefaultUpdatedAt = aliyunavatarDescUpdatedAt.UpdateDefault.(func() time.Time)
  176. // aliyunavatarDescToken is the schema descriptor for token field.
  177. aliyunavatarDescToken := aliyunavatarFields[7].Descriptor()
  178. // aliyunavatar.DefaultToken holds the default value on creation for the token field.
  179. aliyunavatar.DefaultToken = aliyunavatarDescToken.Default.(string)
  180. // aliyunavatarDescSessionID is the schema descriptor for session_id field.
  181. aliyunavatarDescSessionID := aliyunavatarFields[8].Descriptor()
  182. // aliyunavatar.DefaultSessionID holds the default value on creation for the session_id field.
  183. aliyunavatar.DefaultSessionID = aliyunavatarDescSessionID.Default.(string)
  184. allocagentMixin := schema.AllocAgent{}.Mixin()
  185. allocagentMixinHooks1 := allocagentMixin[1].Hooks()
  186. allocagent.Hooks[0] = allocagentMixinHooks1[0]
  187. allocagentMixinInters1 := allocagentMixin[1].Interceptors()
  188. allocagent.Interceptors[0] = allocagentMixinInters1[0]
  189. allocagentMixinFields0 := allocagentMixin[0].Fields()
  190. _ = allocagentMixinFields0
  191. allocagentFields := schema.AllocAgent{}.Fields()
  192. _ = allocagentFields
  193. // allocagentDescCreatedAt is the schema descriptor for created_at field.
  194. allocagentDescCreatedAt := allocagentMixinFields0[1].Descriptor()
  195. // allocagent.DefaultCreatedAt holds the default value on creation for the created_at field.
  196. allocagent.DefaultCreatedAt = allocagentDescCreatedAt.Default.(func() time.Time)
  197. // allocagentDescUpdatedAt is the schema descriptor for updated_at field.
  198. allocagentDescUpdatedAt := allocagentMixinFields0[2].Descriptor()
  199. // allocagent.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  200. allocagent.DefaultUpdatedAt = allocagentDescUpdatedAt.Default.(func() time.Time)
  201. // allocagent.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  202. allocagent.UpdateDefaultUpdatedAt = allocagentDescUpdatedAt.UpdateDefault.(func() time.Time)
  203. // allocagentDescUserID is the schema descriptor for user_id field.
  204. allocagentDescUserID := allocagentFields[0].Descriptor()
  205. // allocagent.DefaultUserID holds the default value on creation for the user_id field.
  206. allocagent.DefaultUserID = allocagentDescUserID.Default.(string)
  207. // allocagentDescOrganizationID is the schema descriptor for organization_id field.
  208. allocagentDescOrganizationID := allocagentFields[1].Descriptor()
  209. // allocagent.DefaultOrganizationID holds the default value on creation for the organization_id field.
  210. allocagent.DefaultOrganizationID = allocagentDescOrganizationID.Default.(uint64)
  211. // allocagentDescStatus is the schema descriptor for status field.
  212. allocagentDescStatus := allocagentFields[3].Descriptor()
  213. // allocagent.DefaultStatus holds the default value on creation for the status field.
  214. allocagent.DefaultStatus = allocagentDescStatus.Default.(int)
  215. // allocagent.StatusValidator is a validator for the "status" field. It is called by the builders before save.
  216. allocagent.StatusValidator = allocagentDescStatus.Validators[0].(func(int) error)
  217. apikeyMixin := schema.ApiKey{}.Mixin()
  218. apikeyMixinHooks1 := apikeyMixin[1].Hooks()
  219. apikey.Hooks[0] = apikeyMixinHooks1[0]
  220. apikeyMixinInters1 := apikeyMixin[1].Interceptors()
  221. apikey.Interceptors[0] = apikeyMixinInters1[0]
  222. apikeyMixinFields0 := apikeyMixin[0].Fields()
  223. _ = apikeyMixinFields0
  224. apikeyFields := schema.ApiKey{}.Fields()
  225. _ = apikeyFields
  226. // apikeyDescCreatedAt is the schema descriptor for created_at field.
  227. apikeyDescCreatedAt := apikeyMixinFields0[1].Descriptor()
  228. // apikey.DefaultCreatedAt holds the default value on creation for the created_at field.
  229. apikey.DefaultCreatedAt = apikeyDescCreatedAt.Default.(func() time.Time)
  230. // apikeyDescUpdatedAt is the schema descriptor for updated_at field.
  231. apikeyDescUpdatedAt := apikeyMixinFields0[2].Descriptor()
  232. // apikey.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  233. apikey.DefaultUpdatedAt = apikeyDescUpdatedAt.Default.(func() time.Time)
  234. // apikey.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  235. apikey.UpdateDefaultUpdatedAt = apikeyDescUpdatedAt.UpdateDefault.(func() time.Time)
  236. // apikeyDescTitle is the schema descriptor for title field.
  237. apikeyDescTitle := apikeyFields[0].Descriptor()
  238. // apikey.DefaultTitle holds the default value on creation for the title field.
  239. apikey.DefaultTitle = apikeyDescTitle.Default.(string)
  240. // apikeyDescKey is the schema descriptor for key field.
  241. apikeyDescKey := apikeyFields[1].Descriptor()
  242. // apikey.DefaultKey holds the default value on creation for the key field.
  243. apikey.DefaultKey = apikeyDescKey.Default.(string)
  244. // apikeyDescOrganizationID is the schema descriptor for organization_id field.
  245. apikeyDescOrganizationID := apikeyFields[2].Descriptor()
  246. // apikey.DefaultOrganizationID holds the default value on creation for the organization_id field.
  247. apikey.DefaultOrganizationID = apikeyDescOrganizationID.Default.(uint64)
  248. // apikeyDescAgentID is the schema descriptor for agent_id field.
  249. apikeyDescAgentID := apikeyFields[3].Descriptor()
  250. // apikey.DefaultAgentID holds the default value on creation for the agent_id field.
  251. apikey.DefaultAgentID = apikeyDescAgentID.Default.(uint64)
  252. // apikeyDescCustomAgentBase is the schema descriptor for custom_agent_base field.
  253. apikeyDescCustomAgentBase := apikeyFields[4].Descriptor()
  254. // apikey.DefaultCustomAgentBase holds the default value on creation for the custom_agent_base field.
  255. apikey.DefaultCustomAgentBase = apikeyDescCustomAgentBase.Default.(string)
  256. // apikeyDescCustomAgentKey is the schema descriptor for custom_agent_key field.
  257. apikeyDescCustomAgentKey := apikeyFields[5].Descriptor()
  258. // apikey.DefaultCustomAgentKey holds the default value on creation for the custom_agent_key field.
  259. apikey.DefaultCustomAgentKey = apikeyDescCustomAgentKey.Default.(string)
  260. // apikeyDescOpenaiBase is the schema descriptor for openai_base field.
  261. apikeyDescOpenaiBase := apikeyFields[6].Descriptor()
  262. // apikey.DefaultOpenaiBase holds the default value on creation for the openai_base field.
  263. apikey.DefaultOpenaiBase = apikeyDescOpenaiBase.Default.(string)
  264. // apikeyDescOpenaiKey is the schema descriptor for openai_key field.
  265. apikeyDescOpenaiKey := apikeyFields[7].Descriptor()
  266. // apikey.DefaultOpenaiKey holds the default value on creation for the openai_key field.
  267. apikey.DefaultOpenaiKey = apikeyDescOpenaiKey.Default.(string)
  268. batchmsgMixin := schema.BatchMsg{}.Mixin()
  269. batchmsgMixinHooks1 := batchmsgMixin[1].Hooks()
  270. batchmsg.Hooks[0] = batchmsgMixinHooks1[0]
  271. batchmsgMixinInters1 := batchmsgMixin[1].Interceptors()
  272. batchmsg.Interceptors[0] = batchmsgMixinInters1[0]
  273. batchmsgMixinFields0 := batchmsgMixin[0].Fields()
  274. _ = batchmsgMixinFields0
  275. batchmsgFields := schema.BatchMsg{}.Fields()
  276. _ = batchmsgFields
  277. // batchmsgDescCreatedAt is the schema descriptor for created_at field.
  278. batchmsgDescCreatedAt := batchmsgMixinFields0[1].Descriptor()
  279. // batchmsg.DefaultCreatedAt holds the default value on creation for the created_at field.
  280. batchmsg.DefaultCreatedAt = batchmsgDescCreatedAt.Default.(func() time.Time)
  281. // batchmsgDescUpdatedAt is the schema descriptor for updated_at field.
  282. batchmsgDescUpdatedAt := batchmsgMixinFields0[2].Descriptor()
  283. // batchmsg.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  284. batchmsg.DefaultUpdatedAt = batchmsgDescUpdatedAt.Default.(func() time.Time)
  285. // batchmsg.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  286. batchmsg.UpdateDefaultUpdatedAt = batchmsgDescUpdatedAt.UpdateDefault.(func() time.Time)
  287. // batchmsgDescTaskName is the schema descriptor for task_name field.
  288. batchmsgDescTaskName := batchmsgFields[2].Descriptor()
  289. // batchmsg.DefaultTaskName holds the default value on creation for the task_name field.
  290. batchmsg.DefaultTaskName = batchmsgDescTaskName.Default.(string)
  291. // batchmsgDescOrganizationID is the schema descriptor for organization_id field.
  292. batchmsgDescOrganizationID := batchmsgFields[14].Descriptor()
  293. // batchmsg.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  294. batchmsg.OrganizationIDValidator = batchmsgDescOrganizationID.Validators[0].(func(uint64) error)
  295. // batchmsgDescCtype is the schema descriptor for ctype field.
  296. batchmsgDescCtype := batchmsgFields[15].Descriptor()
  297. // batchmsg.DefaultCtype holds the default value on creation for the ctype field.
  298. batchmsg.DefaultCtype = batchmsgDescCtype.Default.(uint64)
  299. categoryMixin := schema.Category{}.Mixin()
  300. categoryMixinHooks1 := categoryMixin[1].Hooks()
  301. category.Hooks[0] = categoryMixinHooks1[0]
  302. categoryMixinInters1 := categoryMixin[1].Interceptors()
  303. category.Interceptors[0] = categoryMixinInters1[0]
  304. categoryMixinFields0 := categoryMixin[0].Fields()
  305. _ = categoryMixinFields0
  306. categoryFields := schema.Category{}.Fields()
  307. _ = categoryFields
  308. // categoryDescCreatedAt is the schema descriptor for created_at field.
  309. categoryDescCreatedAt := categoryMixinFields0[1].Descriptor()
  310. // category.DefaultCreatedAt holds the default value on creation for the created_at field.
  311. category.DefaultCreatedAt = categoryDescCreatedAt.Default.(func() time.Time)
  312. // categoryDescUpdatedAt is the schema descriptor for updated_at field.
  313. categoryDescUpdatedAt := categoryMixinFields0[2].Descriptor()
  314. // category.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  315. category.DefaultUpdatedAt = categoryDescUpdatedAt.Default.(func() time.Time)
  316. // category.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  317. category.UpdateDefaultUpdatedAt = categoryDescUpdatedAt.UpdateDefault.(func() time.Time)
  318. // categoryDescName is the schema descriptor for name field.
  319. categoryDescName := categoryFields[0].Descriptor()
  320. // category.NameValidator is a validator for the "name" field. It is called by the builders before save.
  321. category.NameValidator = categoryDescName.Validators[0].(func(string) error)
  322. // categoryDescOrganizationID is the schema descriptor for organization_id field.
  323. categoryDescOrganizationID := categoryFields[1].Descriptor()
  324. // category.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  325. category.OrganizationIDValidator = categoryDescOrganizationID.Validators[0].(func(uint64) error)
  326. chatrecordsMixin := schema.ChatRecords{}.Mixin()
  327. chatrecordsMixinHooks1 := chatrecordsMixin[1].Hooks()
  328. chatrecords.Hooks[0] = chatrecordsMixinHooks1[0]
  329. chatrecordsMixinInters1 := chatrecordsMixin[1].Interceptors()
  330. chatrecords.Interceptors[0] = chatrecordsMixinInters1[0]
  331. chatrecordsMixinFields0 := chatrecordsMixin[0].Fields()
  332. _ = chatrecordsMixinFields0
  333. chatrecordsFields := schema.ChatRecords{}.Fields()
  334. _ = chatrecordsFields
  335. // chatrecordsDescCreatedAt is the schema descriptor for created_at field.
  336. chatrecordsDescCreatedAt := chatrecordsMixinFields0[1].Descriptor()
  337. // chatrecords.DefaultCreatedAt holds the default value on creation for the created_at field.
  338. chatrecords.DefaultCreatedAt = chatrecordsDescCreatedAt.Default.(func() time.Time)
  339. // chatrecordsDescUpdatedAt is the schema descriptor for updated_at field.
  340. chatrecordsDescUpdatedAt := chatrecordsMixinFields0[2].Descriptor()
  341. // chatrecords.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  342. chatrecords.DefaultUpdatedAt = chatrecordsDescUpdatedAt.Default.(func() time.Time)
  343. // chatrecords.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  344. chatrecords.UpdateDefaultUpdatedAt = chatrecordsDescUpdatedAt.UpdateDefault.(func() time.Time)
  345. // chatrecordsDescContent is the schema descriptor for content field.
  346. chatrecordsDescContent := chatrecordsFields[0].Descriptor()
  347. // chatrecords.DefaultContent holds the default value on creation for the content field.
  348. chatrecords.DefaultContent = chatrecordsDescContent.Default.(string)
  349. // chatrecordsDescContentType is the schema descriptor for content_type field.
  350. chatrecordsDescContentType := chatrecordsFields[1].Descriptor()
  351. // chatrecords.DefaultContentType holds the default value on creation for the content_type field.
  352. chatrecords.DefaultContentType = chatrecordsDescContentType.Default.(uint8)
  353. // chatrecordsDescSessionID is the schema descriptor for session_id field.
  354. chatrecordsDescSessionID := chatrecordsFields[2].Descriptor()
  355. // chatrecords.DefaultSessionID holds the default value on creation for the session_id field.
  356. chatrecords.DefaultSessionID = chatrecordsDescSessionID.Default.(uint64)
  357. // chatrecordsDescUserID is the schema descriptor for user_id field.
  358. chatrecordsDescUserID := chatrecordsFields[3].Descriptor()
  359. // chatrecords.DefaultUserID holds the default value on creation for the user_id field.
  360. chatrecords.DefaultUserID = chatrecordsDescUserID.Default.(uint64)
  361. // chatrecordsDescBotID is the schema descriptor for bot_id field.
  362. chatrecordsDescBotID := chatrecordsFields[4].Descriptor()
  363. // chatrecords.DefaultBotID holds the default value on creation for the bot_id field.
  364. chatrecords.DefaultBotID = chatrecordsDescBotID.Default.(uint64)
  365. // chatrecordsDescBotType is the schema descriptor for bot_type field.
  366. chatrecordsDescBotType := chatrecordsFields[5].Descriptor()
  367. // chatrecords.DefaultBotType holds the default value on creation for the bot_type field.
  368. chatrecords.DefaultBotType = chatrecordsDescBotType.Default.(uint8)
  369. chatsessionMixin := schema.ChatSession{}.Mixin()
  370. chatsessionMixinHooks1 := chatsessionMixin[1].Hooks()
  371. chatsession.Hooks[0] = chatsessionMixinHooks1[0]
  372. chatsessionMixinInters1 := chatsessionMixin[1].Interceptors()
  373. chatsession.Interceptors[0] = chatsessionMixinInters1[0]
  374. chatsessionMixinFields0 := chatsessionMixin[0].Fields()
  375. _ = chatsessionMixinFields0
  376. chatsessionFields := schema.ChatSession{}.Fields()
  377. _ = chatsessionFields
  378. // chatsessionDescCreatedAt is the schema descriptor for created_at field.
  379. chatsessionDescCreatedAt := chatsessionMixinFields0[1].Descriptor()
  380. // chatsession.DefaultCreatedAt holds the default value on creation for the created_at field.
  381. chatsession.DefaultCreatedAt = chatsessionDescCreatedAt.Default.(func() time.Time)
  382. // chatsessionDescUpdatedAt is the schema descriptor for updated_at field.
  383. chatsessionDescUpdatedAt := chatsessionMixinFields0[2].Descriptor()
  384. // chatsession.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  385. chatsession.DefaultUpdatedAt = chatsessionDescUpdatedAt.Default.(func() time.Time)
  386. // chatsession.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  387. chatsession.UpdateDefaultUpdatedAt = chatsessionDescUpdatedAt.UpdateDefault.(func() time.Time)
  388. // chatsessionDescName is the schema descriptor for name field.
  389. chatsessionDescName := chatsessionFields[0].Descriptor()
  390. // chatsession.DefaultName holds the default value on creation for the name field.
  391. chatsession.DefaultName = chatsessionDescName.Default.(string)
  392. // chatsessionDescUserID is the schema descriptor for user_id field.
  393. chatsessionDescUserID := chatsessionFields[1].Descriptor()
  394. // chatsession.DefaultUserID holds the default value on creation for the user_id field.
  395. chatsession.DefaultUserID = chatsessionDescUserID.Default.(uint64)
  396. // chatsessionDescBotID is the schema descriptor for bot_id field.
  397. chatsessionDescBotID := chatsessionFields[2].Descriptor()
  398. // chatsession.DefaultBotID holds the default value on creation for the bot_id field.
  399. chatsession.DefaultBotID = chatsessionDescBotID.Default.(uint64)
  400. // chatsessionDescBotType is the schema descriptor for bot_type field.
  401. chatsessionDescBotType := chatsessionFields[3].Descriptor()
  402. // chatsession.DefaultBotType holds the default value on creation for the bot_type field.
  403. chatsession.DefaultBotType = chatsessionDescBotType.Default.(uint8)
  404. contactMixin := schema.Contact{}.Mixin()
  405. contactMixinHooks2 := contactMixin[2].Hooks()
  406. contact.Hooks[0] = contactMixinHooks2[0]
  407. contactMixinInters2 := contactMixin[2].Interceptors()
  408. contact.Interceptors[0] = contactMixinInters2[0]
  409. contactMixinFields0 := contactMixin[0].Fields()
  410. _ = contactMixinFields0
  411. contactMixinFields1 := contactMixin[1].Fields()
  412. _ = contactMixinFields1
  413. contactFields := schema.Contact{}.Fields()
  414. _ = contactFields
  415. // contactDescCreatedAt is the schema descriptor for created_at field.
  416. contactDescCreatedAt := contactMixinFields0[1].Descriptor()
  417. // contact.DefaultCreatedAt holds the default value on creation for the created_at field.
  418. contact.DefaultCreatedAt = contactDescCreatedAt.Default.(func() time.Time)
  419. // contactDescUpdatedAt is the schema descriptor for updated_at field.
  420. contactDescUpdatedAt := contactMixinFields0[2].Descriptor()
  421. // contact.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  422. contact.DefaultUpdatedAt = contactDescUpdatedAt.Default.(func() time.Time)
  423. // contact.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  424. contact.UpdateDefaultUpdatedAt = contactDescUpdatedAt.UpdateDefault.(func() time.Time)
  425. // contactDescStatus is the schema descriptor for status field.
  426. contactDescStatus := contactMixinFields1[0].Descriptor()
  427. // contact.DefaultStatus holds the default value on creation for the status field.
  428. contact.DefaultStatus = contactDescStatus.Default.(uint8)
  429. // contactDescWxWxid is the schema descriptor for wx_wxid field.
  430. contactDescWxWxid := contactFields[0].Descriptor()
  431. // contact.DefaultWxWxid holds the default value on creation for the wx_wxid field.
  432. contact.DefaultWxWxid = contactDescWxWxid.Default.(string)
  433. // contactDescType is the schema descriptor for type field.
  434. contactDescType := contactFields[1].Descriptor()
  435. // contact.DefaultType holds the default value on creation for the type field.
  436. contact.DefaultType = contactDescType.Default.(int)
  437. // contactDescWxid is the schema descriptor for wxid field.
  438. contactDescWxid := contactFields[2].Descriptor()
  439. // contact.DefaultWxid holds the default value on creation for the wxid field.
  440. contact.DefaultWxid = contactDescWxid.Default.(string)
  441. // contactDescAccount is the schema descriptor for account field.
  442. contactDescAccount := contactFields[3].Descriptor()
  443. // contact.DefaultAccount holds the default value on creation for the account field.
  444. contact.DefaultAccount = contactDescAccount.Default.(string)
  445. // contactDescNickname is the schema descriptor for nickname field.
  446. contactDescNickname := contactFields[4].Descriptor()
  447. // contact.DefaultNickname holds the default value on creation for the nickname field.
  448. contact.DefaultNickname = contactDescNickname.Default.(string)
  449. // contactDescMarkname is the schema descriptor for markname field.
  450. contactDescMarkname := contactFields[5].Descriptor()
  451. // contact.DefaultMarkname holds the default value on creation for the markname field.
  452. contact.DefaultMarkname = contactDescMarkname.Default.(string)
  453. // contactDescHeadimg is the schema descriptor for headimg field.
  454. contactDescHeadimg := contactFields[6].Descriptor()
  455. // contact.DefaultHeadimg holds the default value on creation for the headimg field.
  456. contact.DefaultHeadimg = contactDescHeadimg.Default.(string)
  457. // contactDescSex is the schema descriptor for sex field.
  458. contactDescSex := contactFields[7].Descriptor()
  459. // contact.DefaultSex holds the default value on creation for the sex field.
  460. contact.DefaultSex = contactDescSex.Default.(int)
  461. // contactDescStarrole is the schema descriptor for starrole field.
  462. contactDescStarrole := contactFields[8].Descriptor()
  463. // contact.DefaultStarrole holds the default value on creation for the starrole field.
  464. contact.DefaultStarrole = contactDescStarrole.Default.(string)
  465. // contactDescDontseeit is the schema descriptor for dontseeit field.
  466. contactDescDontseeit := contactFields[9].Descriptor()
  467. // contact.DefaultDontseeit holds the default value on creation for the dontseeit field.
  468. contact.DefaultDontseeit = contactDescDontseeit.Default.(int)
  469. // contactDescDontseeme is the schema descriptor for dontseeme field.
  470. contactDescDontseeme := contactFields[10].Descriptor()
  471. // contact.DefaultDontseeme holds the default value on creation for the dontseeme field.
  472. contact.DefaultDontseeme = contactDescDontseeme.Default.(int)
  473. // contactDescLag is the schema descriptor for lag field.
  474. contactDescLag := contactFields[11].Descriptor()
  475. // contact.DefaultLag holds the default value on creation for the lag field.
  476. contact.DefaultLag = contactDescLag.Default.(string)
  477. // contactDescGid is the schema descriptor for gid field.
  478. contactDescGid := contactFields[12].Descriptor()
  479. // contact.DefaultGid holds the default value on creation for the gid field.
  480. contact.DefaultGid = contactDescGid.Default.(string)
  481. // contactDescGname is the schema descriptor for gname field.
  482. contactDescGname := contactFields[13].Descriptor()
  483. // contact.DefaultGname holds the default value on creation for the gname field.
  484. contact.DefaultGname = contactDescGname.Default.(string)
  485. // contactDescV3 is the schema descriptor for v3 field.
  486. contactDescV3 := contactFields[14].Descriptor()
  487. // contact.DefaultV3 holds the default value on creation for the v3 field.
  488. contact.DefaultV3 = contactDescV3.Default.(string)
  489. // contactDescOrganizationID is the schema descriptor for organization_id field.
  490. contactDescOrganizationID := contactFields[15].Descriptor()
  491. // contact.DefaultOrganizationID holds the default value on creation for the organization_id field.
  492. contact.DefaultOrganizationID = contactDescOrganizationID.Default.(uint64)
  493. // contactDescCtype is the schema descriptor for ctype field.
  494. contactDescCtype := contactFields[16].Descriptor()
  495. // contact.DefaultCtype holds the default value on creation for the ctype field.
  496. contact.DefaultCtype = contactDescCtype.Default.(uint64)
  497. // contactDescCage is the schema descriptor for cage field.
  498. contactDescCage := contactFields[17].Descriptor()
  499. // contact.DefaultCage holds the default value on creation for the cage field.
  500. contact.DefaultCage = contactDescCage.Default.(int)
  501. // contactDescCname is the schema descriptor for cname field.
  502. contactDescCname := contactFields[18].Descriptor()
  503. // contact.DefaultCname holds the default value on creation for the cname field.
  504. contact.DefaultCname = contactDescCname.Default.(string)
  505. // contactDescCarea is the schema descriptor for carea field.
  506. contactDescCarea := contactFields[19].Descriptor()
  507. // contact.DefaultCarea holds the default value on creation for the carea field.
  508. contact.DefaultCarea = contactDescCarea.Default.(string)
  509. // contactDescCbirthday is the schema descriptor for cbirthday field.
  510. contactDescCbirthday := contactFields[20].Descriptor()
  511. // contact.DefaultCbirthday holds the default value on creation for the cbirthday field.
  512. contact.DefaultCbirthday = contactDescCbirthday.Default.(string)
  513. // contactDescCbirtharea is the schema descriptor for cbirtharea field.
  514. contactDescCbirtharea := contactFields[21].Descriptor()
  515. // contact.DefaultCbirtharea holds the default value on creation for the cbirtharea field.
  516. contact.DefaultCbirtharea = contactDescCbirtharea.Default.(string)
  517. // contactDescCidcardNo is the schema descriptor for cidcard_no field.
  518. contactDescCidcardNo := contactFields[22].Descriptor()
  519. // contact.DefaultCidcardNo holds the default value on creation for the cidcard_no field.
  520. contact.DefaultCidcardNo = contactDescCidcardNo.Default.(string)
  521. // contactDescCtitle is the schema descriptor for ctitle field.
  522. contactDescCtitle := contactFields[23].Descriptor()
  523. // contact.DefaultCtitle holds the default value on creation for the ctitle field.
  524. contact.DefaultCtitle = contactDescCtitle.Default.(string)
  525. // contactDescCc is the schema descriptor for cc field.
  526. contactDescCc := contactFields[24].Descriptor()
  527. // contact.DefaultCc holds the default value on creation for the cc field.
  528. contact.DefaultCc = contactDescCc.Default.(string)
  529. // contactDescPhone is the schema descriptor for phone field.
  530. contactDescPhone := contactFields[25].Descriptor()
  531. // contact.DefaultPhone holds the default value on creation for the phone field.
  532. contact.DefaultPhone = contactDescPhone.Default.(string)
  533. contactfieldMixin := schema.ContactField{}.Mixin()
  534. contactfieldMixinHooks2 := contactfieldMixin[2].Hooks()
  535. contactfield.Hooks[0] = contactfieldMixinHooks2[0]
  536. contactfieldMixinInters2 := contactfieldMixin[2].Interceptors()
  537. contactfield.Interceptors[0] = contactfieldMixinInters2[0]
  538. contactfieldMixinFields0 := contactfieldMixin[0].Fields()
  539. _ = contactfieldMixinFields0
  540. contactfieldMixinFields1 := contactfieldMixin[1].Fields()
  541. _ = contactfieldMixinFields1
  542. contactfieldFields := schema.ContactField{}.Fields()
  543. _ = contactfieldFields
  544. // contactfieldDescCreatedAt is the schema descriptor for created_at field.
  545. contactfieldDescCreatedAt := contactfieldMixinFields0[1].Descriptor()
  546. // contactfield.DefaultCreatedAt holds the default value on creation for the created_at field.
  547. contactfield.DefaultCreatedAt = contactfieldDescCreatedAt.Default.(func() time.Time)
  548. // contactfieldDescUpdatedAt is the schema descriptor for updated_at field.
  549. contactfieldDescUpdatedAt := contactfieldMixinFields0[2].Descriptor()
  550. // contactfield.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  551. contactfield.DefaultUpdatedAt = contactfieldDescUpdatedAt.Default.(func() time.Time)
  552. // contactfield.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  553. contactfield.UpdateDefaultUpdatedAt = contactfieldDescUpdatedAt.UpdateDefault.(func() time.Time)
  554. // contactfieldDescStatus is the schema descriptor for status field.
  555. contactfieldDescStatus := contactfieldMixinFields1[0].Descriptor()
  556. // contactfield.DefaultStatus holds the default value on creation for the status field.
  557. contactfield.DefaultStatus = contactfieldDescStatus.Default.(uint8)
  558. // contactfieldDescContactID is the schema descriptor for contact_id field.
  559. contactfieldDescContactID := contactfieldFields[0].Descriptor()
  560. // contactfield.DefaultContactID holds the default value on creation for the contact_id field.
  561. contactfield.DefaultContactID = contactfieldDescContactID.Default.(uint64)
  562. contactfieldtemplateMixin := schema.ContactFieldTemplate{}.Mixin()
  563. contactfieldtemplateMixinHooks2 := contactfieldtemplateMixin[2].Hooks()
  564. contactfieldtemplate.Hooks[0] = contactfieldtemplateMixinHooks2[0]
  565. contactfieldtemplateMixinInters2 := contactfieldtemplateMixin[2].Interceptors()
  566. contactfieldtemplate.Interceptors[0] = contactfieldtemplateMixinInters2[0]
  567. contactfieldtemplateMixinFields0 := contactfieldtemplateMixin[0].Fields()
  568. _ = contactfieldtemplateMixinFields0
  569. contactfieldtemplateMixinFields1 := contactfieldtemplateMixin[1].Fields()
  570. _ = contactfieldtemplateMixinFields1
  571. contactfieldtemplateFields := schema.ContactFieldTemplate{}.Fields()
  572. _ = contactfieldtemplateFields
  573. // contactfieldtemplateDescCreatedAt is the schema descriptor for created_at field.
  574. contactfieldtemplateDescCreatedAt := contactfieldtemplateMixinFields0[1].Descriptor()
  575. // contactfieldtemplate.DefaultCreatedAt holds the default value on creation for the created_at field.
  576. contactfieldtemplate.DefaultCreatedAt = contactfieldtemplateDescCreatedAt.Default.(func() time.Time)
  577. // contactfieldtemplateDescUpdatedAt is the schema descriptor for updated_at field.
  578. contactfieldtemplateDescUpdatedAt := contactfieldtemplateMixinFields0[2].Descriptor()
  579. // contactfieldtemplate.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  580. contactfieldtemplate.DefaultUpdatedAt = contactfieldtemplateDescUpdatedAt.Default.(func() time.Time)
  581. // contactfieldtemplate.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  582. contactfieldtemplate.UpdateDefaultUpdatedAt = contactfieldtemplateDescUpdatedAt.UpdateDefault.(func() time.Time)
  583. // contactfieldtemplateDescStatus is the schema descriptor for status field.
  584. contactfieldtemplateDescStatus := contactfieldtemplateMixinFields1[0].Descriptor()
  585. // contactfieldtemplate.DefaultStatus holds the default value on creation for the status field.
  586. contactfieldtemplate.DefaultStatus = contactfieldtemplateDescStatus.Default.(uint8)
  587. // contactfieldtemplateDescOrganizationID is the schema descriptor for organization_id field.
  588. contactfieldtemplateDescOrganizationID := contactfieldtemplateFields[0].Descriptor()
  589. // contactfieldtemplate.DefaultOrganizationID holds the default value on creation for the organization_id field.
  590. contactfieldtemplate.DefaultOrganizationID = contactfieldtemplateDescOrganizationID.Default.(uint64)
  591. creditbalanceMixin := schema.CreditBalance{}.Mixin()
  592. creditbalanceMixinHooks1 := creditbalanceMixin[1].Hooks()
  593. creditbalance.Hooks[0] = creditbalanceMixinHooks1[0]
  594. creditbalanceMixinInters1 := creditbalanceMixin[1].Interceptors()
  595. creditbalance.Interceptors[0] = creditbalanceMixinInters1[0]
  596. creditbalanceMixinFields0 := creditbalanceMixin[0].Fields()
  597. _ = creditbalanceMixinFields0
  598. creditbalanceFields := schema.CreditBalance{}.Fields()
  599. _ = creditbalanceFields
  600. // creditbalanceDescCreatedAt is the schema descriptor for created_at field.
  601. creditbalanceDescCreatedAt := creditbalanceMixinFields0[1].Descriptor()
  602. // creditbalance.DefaultCreatedAt holds the default value on creation for the created_at field.
  603. creditbalance.DefaultCreatedAt = creditbalanceDescCreatedAt.Default.(func() time.Time)
  604. // creditbalanceDescUpdatedAt is the schema descriptor for updated_at field.
  605. creditbalanceDescUpdatedAt := creditbalanceMixinFields0[2].Descriptor()
  606. // creditbalance.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  607. creditbalance.DefaultUpdatedAt = creditbalanceDescUpdatedAt.Default.(func() time.Time)
  608. // creditbalance.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  609. creditbalance.UpdateDefaultUpdatedAt = creditbalanceDescUpdatedAt.UpdateDefault.(func() time.Time)
  610. // creditbalanceDescStatus is the schema descriptor for status field.
  611. creditbalanceDescStatus := creditbalanceFields[2].Descriptor()
  612. // creditbalance.DefaultStatus holds the default value on creation for the status field.
  613. creditbalance.DefaultStatus = creditbalanceDescStatus.Default.(int)
  614. // creditbalance.StatusValidator is a validator for the "status" field. It is called by the builders before save.
  615. creditbalance.StatusValidator = creditbalanceDescStatus.Validators[0].(func(int) error)
  616. creditusageMixin := schema.CreditUsage{}.Mixin()
  617. creditusageMixinHooks1 := creditusageMixin[1].Hooks()
  618. creditusage.Hooks[0] = creditusageMixinHooks1[0]
  619. creditusageMixinInters1 := creditusageMixin[1].Interceptors()
  620. creditusage.Interceptors[0] = creditusageMixinInters1[0]
  621. creditusageMixinFields0 := creditusageMixin[0].Fields()
  622. _ = creditusageMixinFields0
  623. creditusageFields := schema.CreditUsage{}.Fields()
  624. _ = creditusageFields
  625. // creditusageDescCreatedAt is the schema descriptor for created_at field.
  626. creditusageDescCreatedAt := creditusageMixinFields0[1].Descriptor()
  627. // creditusage.DefaultCreatedAt holds the default value on creation for the created_at field.
  628. creditusage.DefaultCreatedAt = creditusageDescCreatedAt.Default.(func() time.Time)
  629. // creditusageDescUpdatedAt is the schema descriptor for updated_at field.
  630. creditusageDescUpdatedAt := creditusageMixinFields0[2].Descriptor()
  631. // creditusage.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  632. creditusage.DefaultUpdatedAt = creditusageDescUpdatedAt.Default.(func() time.Time)
  633. // creditusage.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  634. creditusage.UpdateDefaultUpdatedAt = creditusageDescUpdatedAt.UpdateDefault.(func() time.Time)
  635. // creditusageDescUserID is the schema descriptor for user_id field.
  636. creditusageDescUserID := creditusageFields[0].Descriptor()
  637. // creditusage.UserIDValidator is a validator for the "user_id" field. It is called by the builders before save.
  638. creditusage.UserIDValidator = creditusageDescUserID.Validators[0].(func(string) error)
  639. // creditusageDescStatus is the schema descriptor for status field.
  640. creditusageDescStatus := creditusageFields[6].Descriptor()
  641. // creditusage.DefaultStatus holds the default value on creation for the status field.
  642. creditusage.DefaultStatus = creditusageDescStatus.Default.(int)
  643. // creditusage.StatusValidator is a validator for the "status" field. It is called by the builders before save.
  644. creditusage.StatusValidator = creditusageDescStatus.Validators[0].(func(int) error)
  645. // creditusageDescNtype is the schema descriptor for ntype field.
  646. creditusageDescNtype := creditusageFields[7].Descriptor()
  647. // creditusage.DefaultNtype holds the default value on creation for the ntype field.
  648. creditusage.DefaultNtype = creditusageDescNtype.Default.(int)
  649. // creditusageDescTable is the schema descriptor for table field.
  650. creditusageDescTable := creditusageFields[8].Descriptor()
  651. // creditusage.DefaultTable holds the default value on creation for the table field.
  652. creditusage.DefaultTable = creditusageDescTable.Default.(string)
  653. // creditusageDescNid is the schema descriptor for nid field.
  654. creditusageDescNid := creditusageFields[10].Descriptor()
  655. // creditusage.DefaultNid holds the default value on creation for the nid field.
  656. creditusage.DefaultNid = creditusageDescNid.Default.(uint64)
  657. // creditusageDescReason is the schema descriptor for reason field.
  658. creditusageDescReason := creditusageFields[11].Descriptor()
  659. // creditusage.DefaultReason holds the default value on creation for the reason field.
  660. creditusage.DefaultReason = creditusageDescReason.Default.(string)
  661. // creditusage.ReasonValidator is a validator for the "reason" field. It is called by the builders before save.
  662. creditusage.ReasonValidator = creditusageDescReason.Validators[0].(func(string) error)
  663. // creditusageDescOperator is the schema descriptor for operator field.
  664. creditusageDescOperator := creditusageFields[12].Descriptor()
  665. // creditusage.DefaultOperator holds the default value on creation for the operator field.
  666. creditusage.DefaultOperator = creditusageDescOperator.Default.(string)
  667. // creditusage.OperatorValidator is a validator for the "operator" field. It is called by the builders before save.
  668. creditusage.OperatorValidator = creditusageDescOperator.Validators[0].(func(string) error)
  669. employeeMixin := schema.Employee{}.Mixin()
  670. employeeMixinHooks1 := employeeMixin[1].Hooks()
  671. employee.Hooks[0] = employeeMixinHooks1[0]
  672. employeeMixinInters1 := employeeMixin[1].Interceptors()
  673. employee.Interceptors[0] = employeeMixinInters1[0]
  674. employeeMixinFields0 := employeeMixin[0].Fields()
  675. _ = employeeMixinFields0
  676. employeeFields := schema.Employee{}.Fields()
  677. _ = employeeFields
  678. // employeeDescCreatedAt is the schema descriptor for created_at field.
  679. employeeDescCreatedAt := employeeMixinFields0[1].Descriptor()
  680. // employee.DefaultCreatedAt holds the default value on creation for the created_at field.
  681. employee.DefaultCreatedAt = employeeDescCreatedAt.Default.(func() time.Time)
  682. // employeeDescUpdatedAt is the schema descriptor for updated_at field.
  683. employeeDescUpdatedAt := employeeMixinFields0[2].Descriptor()
  684. // employee.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  685. employee.DefaultUpdatedAt = employeeDescUpdatedAt.Default.(func() time.Time)
  686. // employee.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  687. employee.UpdateDefaultUpdatedAt = employeeDescUpdatedAt.UpdateDefault.(func() time.Time)
  688. // employeeDescTitle is the schema descriptor for title field.
  689. employeeDescTitle := employeeFields[0].Descriptor()
  690. // employee.TitleValidator is a validator for the "title" field. It is called by the builders before save.
  691. employee.TitleValidator = employeeDescTitle.Validators[0].(func(string) error)
  692. // employeeDescHireCount is the schema descriptor for hire_count field.
  693. employeeDescHireCount := employeeFields[3].Descriptor()
  694. // employee.DefaultHireCount holds the default value on creation for the hire_count field.
  695. employee.DefaultHireCount = employeeDescHireCount.Default.(int)
  696. // employee.HireCountValidator is a validator for the "hire_count" field. It is called by the builders before save.
  697. employee.HireCountValidator = employeeDescHireCount.Validators[0].(func(int) error)
  698. // employeeDescServiceCount is the schema descriptor for service_count field.
  699. employeeDescServiceCount := employeeFields[4].Descriptor()
  700. // employee.DefaultServiceCount holds the default value on creation for the service_count field.
  701. employee.DefaultServiceCount = employeeDescServiceCount.Default.(int)
  702. // employee.ServiceCountValidator is a validator for the "service_count" field. It is called by the builders before save.
  703. employee.ServiceCountValidator = employeeDescServiceCount.Validators[0].(func(int) error)
  704. // employeeDescAchievementCount is the schema descriptor for achievement_count field.
  705. employeeDescAchievementCount := employeeFields[5].Descriptor()
  706. // employee.DefaultAchievementCount holds the default value on creation for the achievement_count field.
  707. employee.DefaultAchievementCount = employeeDescAchievementCount.Default.(int)
  708. // employee.AchievementCountValidator is a validator for the "achievement_count" field. It is called by the builders before save.
  709. employee.AchievementCountValidator = employeeDescAchievementCount.Validators[0].(func(int) error)
  710. // employeeDescIntro is the schema descriptor for intro field.
  711. employeeDescIntro := employeeFields[6].Descriptor()
  712. // employee.DefaultIntro holds the default value on creation for the intro field.
  713. employee.DefaultIntro = employeeDescIntro.Default.(string)
  714. // employeeDescEstimate is the schema descriptor for estimate field.
  715. employeeDescEstimate := employeeFields[7].Descriptor()
  716. // employee.DefaultEstimate holds the default value on creation for the estimate field.
  717. employee.DefaultEstimate = employeeDescEstimate.Default.(string)
  718. // employeeDescSkill is the schema descriptor for skill field.
  719. employeeDescSkill := employeeFields[8].Descriptor()
  720. // employee.DefaultSkill holds the default value on creation for the skill field.
  721. employee.DefaultSkill = employeeDescSkill.Default.(string)
  722. // employeeDescAbilityType is the schema descriptor for ability_type field.
  723. employeeDescAbilityType := employeeFields[9].Descriptor()
  724. // employee.DefaultAbilityType holds the default value on creation for the ability_type field.
  725. employee.DefaultAbilityType = employeeDescAbilityType.Default.(string)
  726. // employeeDescScene is the schema descriptor for scene field.
  727. employeeDescScene := employeeFields[10].Descriptor()
  728. // employee.DefaultScene holds the default value on creation for the scene field.
  729. employee.DefaultScene = employeeDescScene.Default.(string)
  730. // employeeDescSwitchIn is the schema descriptor for switch_in field.
  731. employeeDescSwitchIn := employeeFields[11].Descriptor()
  732. // employee.DefaultSwitchIn holds the default value on creation for the switch_in field.
  733. employee.DefaultSwitchIn = employeeDescSwitchIn.Default.(string)
  734. // employeeDescVideoURL is the schema descriptor for video_url field.
  735. employeeDescVideoURL := employeeFields[12].Descriptor()
  736. // employee.DefaultVideoURL holds the default value on creation for the video_url field.
  737. employee.DefaultVideoURL = employeeDescVideoURL.Default.(string)
  738. // employeeDescOrganizationID is the schema descriptor for organization_id field.
  739. employeeDescOrganizationID := employeeFields[13].Descriptor()
  740. // employee.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  741. employee.OrganizationIDValidator = employeeDescOrganizationID.Validators[0].(func(uint64) error)
  742. // employeeDescCategoryID is the schema descriptor for category_id field.
  743. employeeDescCategoryID := employeeFields[14].Descriptor()
  744. // employee.CategoryIDValidator is a validator for the "category_id" field. It is called by the builders before save.
  745. employee.CategoryIDValidator = employeeDescCategoryID.Validators[0].(func(uint64) error)
  746. // employeeDescAPIBase is the schema descriptor for api_base field.
  747. employeeDescAPIBase := employeeFields[15].Descriptor()
  748. // employee.DefaultAPIBase holds the default value on creation for the api_base field.
  749. employee.DefaultAPIBase = employeeDescAPIBase.Default.(string)
  750. // employeeDescAPIKey is the schema descriptor for api_key field.
  751. employeeDescAPIKey := employeeFields[16].Descriptor()
  752. // employee.DefaultAPIKey holds the default value on creation for the api_key field.
  753. employee.DefaultAPIKey = employeeDescAPIKey.Default.(string)
  754. // employeeDescIsVip is the schema descriptor for is_vip field.
  755. employeeDescIsVip := employeeFields[18].Descriptor()
  756. // employee.DefaultIsVip holds the default value on creation for the is_vip field.
  757. employee.DefaultIsVip = employeeDescIsVip.Default.(int)
  758. employeeconfigMixin := schema.EmployeeConfig{}.Mixin()
  759. employeeconfigMixinHooks1 := employeeconfigMixin[1].Hooks()
  760. employeeconfig.Hooks[0] = employeeconfigMixinHooks1[0]
  761. employeeconfigMixinInters1 := employeeconfigMixin[1].Interceptors()
  762. employeeconfig.Interceptors[0] = employeeconfigMixinInters1[0]
  763. employeeconfigMixinFields0 := employeeconfigMixin[0].Fields()
  764. _ = employeeconfigMixinFields0
  765. employeeconfigFields := schema.EmployeeConfig{}.Fields()
  766. _ = employeeconfigFields
  767. // employeeconfigDescCreatedAt is the schema descriptor for created_at field.
  768. employeeconfigDescCreatedAt := employeeconfigMixinFields0[1].Descriptor()
  769. // employeeconfig.DefaultCreatedAt holds the default value on creation for the created_at field.
  770. employeeconfig.DefaultCreatedAt = employeeconfigDescCreatedAt.Default.(func() time.Time)
  771. // employeeconfigDescUpdatedAt is the schema descriptor for updated_at field.
  772. employeeconfigDescUpdatedAt := employeeconfigMixinFields0[2].Descriptor()
  773. // employeeconfig.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  774. employeeconfig.DefaultUpdatedAt = employeeconfigDescUpdatedAt.Default.(func() time.Time)
  775. // employeeconfig.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  776. employeeconfig.UpdateDefaultUpdatedAt = employeeconfigDescUpdatedAt.UpdateDefault.(func() time.Time)
  777. // employeeconfigDescStype is the schema descriptor for stype field.
  778. employeeconfigDescStype := employeeconfigFields[0].Descriptor()
  779. // employeeconfig.DefaultStype holds the default value on creation for the stype field.
  780. employeeconfig.DefaultStype = employeeconfigDescStype.Default.(string)
  781. // employeeconfigDescTitle is the schema descriptor for title field.
  782. employeeconfigDescTitle := employeeconfigFields[1].Descriptor()
  783. // employeeconfig.DefaultTitle holds the default value on creation for the title field.
  784. employeeconfig.DefaultTitle = employeeconfigDescTitle.Default.(string)
  785. // employeeconfigDescPhoto is the schema descriptor for photo field.
  786. employeeconfigDescPhoto := employeeconfigFields[2].Descriptor()
  787. // employeeconfig.DefaultPhoto holds the default value on creation for the photo field.
  788. employeeconfig.DefaultPhoto = employeeconfigDescPhoto.Default.(string)
  789. // employeeconfigDescOrganizationID is the schema descriptor for organization_id field.
  790. employeeconfigDescOrganizationID := employeeconfigFields[3].Descriptor()
  791. // employeeconfig.DefaultOrganizationID holds the default value on creation for the organization_id field.
  792. employeeconfig.DefaultOrganizationID = employeeconfigDescOrganizationID.Default.(uint64)
  793. labelMixin := schema.Label{}.Mixin()
  794. labelMixinFields0 := labelMixin[0].Fields()
  795. _ = labelMixinFields0
  796. labelMixinFields1 := labelMixin[1].Fields()
  797. _ = labelMixinFields1
  798. labelFields := schema.Label{}.Fields()
  799. _ = labelFields
  800. // labelDescCreatedAt is the schema descriptor for created_at field.
  801. labelDescCreatedAt := labelMixinFields0[1].Descriptor()
  802. // label.DefaultCreatedAt holds the default value on creation for the created_at field.
  803. label.DefaultCreatedAt = labelDescCreatedAt.Default.(func() time.Time)
  804. // labelDescUpdatedAt is the schema descriptor for updated_at field.
  805. labelDescUpdatedAt := labelMixinFields0[2].Descriptor()
  806. // label.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  807. label.DefaultUpdatedAt = labelDescUpdatedAt.Default.(func() time.Time)
  808. // label.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  809. label.UpdateDefaultUpdatedAt = labelDescUpdatedAt.UpdateDefault.(func() time.Time)
  810. // labelDescStatus is the schema descriptor for status field.
  811. labelDescStatus := labelMixinFields1[0].Descriptor()
  812. // label.DefaultStatus holds the default value on creation for the status field.
  813. label.DefaultStatus = labelDescStatus.Default.(uint8)
  814. // labelDescType is the schema descriptor for type field.
  815. labelDescType := labelFields[0].Descriptor()
  816. // label.DefaultType holds the default value on creation for the type field.
  817. label.DefaultType = labelDescType.Default.(int)
  818. // labelDescName is the schema descriptor for name field.
  819. labelDescName := labelFields[1].Descriptor()
  820. // label.DefaultName holds the default value on creation for the name field.
  821. label.DefaultName = labelDescName.Default.(string)
  822. // labelDescFrom is the schema descriptor for from field.
  823. labelDescFrom := labelFields[2].Descriptor()
  824. // label.DefaultFrom holds the default value on creation for the from field.
  825. label.DefaultFrom = labelDescFrom.Default.(int)
  826. // labelDescMode is the schema descriptor for mode field.
  827. labelDescMode := labelFields[3].Descriptor()
  828. // label.DefaultMode holds the default value on creation for the mode field.
  829. label.DefaultMode = labelDescMode.Default.(int)
  830. // labelDescConditions is the schema descriptor for conditions field.
  831. labelDescConditions := labelFields[4].Descriptor()
  832. // label.DefaultConditions holds the default value on creation for the conditions field.
  833. label.DefaultConditions = labelDescConditions.Default.(string)
  834. // labelDescOrganizationID is the schema descriptor for organization_id field.
  835. labelDescOrganizationID := labelFields[5].Descriptor()
  836. // label.DefaultOrganizationID holds the default value on creation for the organization_id field.
  837. label.DefaultOrganizationID = labelDescOrganizationID.Default.(uint64)
  838. labelrelationshipMixin := schema.LabelRelationship{}.Mixin()
  839. labelrelationshipMixinFields0 := labelrelationshipMixin[0].Fields()
  840. _ = labelrelationshipMixinFields0
  841. labelrelationshipMixinFields1 := labelrelationshipMixin[1].Fields()
  842. _ = labelrelationshipMixinFields1
  843. labelrelationshipFields := schema.LabelRelationship{}.Fields()
  844. _ = labelrelationshipFields
  845. // labelrelationshipDescCreatedAt is the schema descriptor for created_at field.
  846. labelrelationshipDescCreatedAt := labelrelationshipMixinFields0[1].Descriptor()
  847. // labelrelationship.DefaultCreatedAt holds the default value on creation for the created_at field.
  848. labelrelationship.DefaultCreatedAt = labelrelationshipDescCreatedAt.Default.(func() time.Time)
  849. // labelrelationshipDescUpdatedAt is the schema descriptor for updated_at field.
  850. labelrelationshipDescUpdatedAt := labelrelationshipMixinFields0[2].Descriptor()
  851. // labelrelationship.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  852. labelrelationship.DefaultUpdatedAt = labelrelationshipDescUpdatedAt.Default.(func() time.Time)
  853. // labelrelationship.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  854. labelrelationship.UpdateDefaultUpdatedAt = labelrelationshipDescUpdatedAt.UpdateDefault.(func() time.Time)
  855. // labelrelationshipDescStatus is the schema descriptor for status field.
  856. labelrelationshipDescStatus := labelrelationshipMixinFields1[0].Descriptor()
  857. // labelrelationship.DefaultStatus holds the default value on creation for the status field.
  858. labelrelationship.DefaultStatus = labelrelationshipDescStatus.Default.(uint8)
  859. // labelrelationshipDescLabelID is the schema descriptor for label_id field.
  860. labelrelationshipDescLabelID := labelrelationshipFields[0].Descriptor()
  861. // labelrelationship.DefaultLabelID holds the default value on creation for the label_id field.
  862. labelrelationship.DefaultLabelID = labelrelationshipDescLabelID.Default.(uint64)
  863. // labelrelationshipDescContactID is the schema descriptor for contact_id field.
  864. labelrelationshipDescContactID := labelrelationshipFields[1].Descriptor()
  865. // labelrelationship.DefaultContactID holds the default value on creation for the contact_id field.
  866. labelrelationship.DefaultContactID = labelrelationshipDescContactID.Default.(uint64)
  867. // labelrelationshipDescOrganizationID is the schema descriptor for organization_id field.
  868. labelrelationshipDescOrganizationID := labelrelationshipFields[2].Descriptor()
  869. // labelrelationship.DefaultOrganizationID holds the default value on creation for the organization_id field.
  870. labelrelationship.DefaultOrganizationID = labelrelationshipDescOrganizationID.Default.(uint64)
  871. labeltaggingMixin := schema.LabelTagging{}.Mixin()
  872. labeltaggingMixinHooks2 := labeltaggingMixin[2].Hooks()
  873. labeltagging.Hooks[0] = labeltaggingMixinHooks2[0]
  874. labeltaggingMixinInters2 := labeltaggingMixin[2].Interceptors()
  875. labeltagging.Interceptors[0] = labeltaggingMixinInters2[0]
  876. labeltaggingMixinFields0 := labeltaggingMixin[0].Fields()
  877. _ = labeltaggingMixinFields0
  878. labeltaggingMixinFields1 := labeltaggingMixin[1].Fields()
  879. _ = labeltaggingMixinFields1
  880. labeltaggingFields := schema.LabelTagging{}.Fields()
  881. _ = labeltaggingFields
  882. // labeltaggingDescCreatedAt is the schema descriptor for created_at field.
  883. labeltaggingDescCreatedAt := labeltaggingMixinFields0[1].Descriptor()
  884. // labeltagging.DefaultCreatedAt holds the default value on creation for the created_at field.
  885. labeltagging.DefaultCreatedAt = labeltaggingDescCreatedAt.Default.(func() time.Time)
  886. // labeltaggingDescUpdatedAt is the schema descriptor for updated_at field.
  887. labeltaggingDescUpdatedAt := labeltaggingMixinFields0[2].Descriptor()
  888. // labeltagging.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  889. labeltagging.DefaultUpdatedAt = labeltaggingDescUpdatedAt.Default.(func() time.Time)
  890. // labeltagging.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  891. labeltagging.UpdateDefaultUpdatedAt = labeltaggingDescUpdatedAt.UpdateDefault.(func() time.Time)
  892. // labeltaggingDescStatus is the schema descriptor for status field.
  893. labeltaggingDescStatus := labeltaggingMixinFields1[0].Descriptor()
  894. // labeltagging.DefaultStatus holds the default value on creation for the status field.
  895. labeltagging.DefaultStatus = labeltaggingDescStatus.Default.(uint8)
  896. // labeltaggingDescOrganizationID is the schema descriptor for organization_id field.
  897. labeltaggingDescOrganizationID := labeltaggingFields[0].Descriptor()
  898. // labeltagging.DefaultOrganizationID holds the default value on creation for the organization_id field.
  899. labeltagging.DefaultOrganizationID = labeltaggingDescOrganizationID.Default.(uint64)
  900. // labeltaggingDescType is the schema descriptor for type field.
  901. labeltaggingDescType := labeltaggingFields[1].Descriptor()
  902. // labeltagging.DefaultType holds the default value on creation for the type field.
  903. labeltagging.DefaultType = labeltaggingDescType.Default.(int)
  904. // labeltaggingDescConditions is the schema descriptor for conditions field.
  905. labeltaggingDescConditions := labeltaggingFields[2].Descriptor()
  906. // labeltagging.DefaultConditions holds the default value on creation for the conditions field.
  907. labeltagging.DefaultConditions = labeltaggingDescConditions.Default.(string)
  908. messageFields := schema.Message{}.Fields()
  909. _ = messageFields
  910. // messageDescWxWxid is the schema descriptor for wx_wxid field.
  911. messageDescWxWxid := messageFields[0].Descriptor()
  912. // message.DefaultWxWxid holds the default value on creation for the wx_wxid field.
  913. message.DefaultWxWxid = messageDescWxWxid.Default.(string)
  914. // messageDescWxid is the schema descriptor for wxid field.
  915. messageDescWxid := messageFields[1].Descriptor()
  916. // message.DefaultWxid holds the default value on creation for the wxid field.
  917. message.DefaultWxid = messageDescWxid.Default.(string)
  918. // messageDescContent is the schema descriptor for content field.
  919. messageDescContent := messageFields[2].Descriptor()
  920. // message.DefaultContent holds the default value on creation for the content field.
  921. message.DefaultContent = messageDescContent.Default.(string)
  922. messagerecordsMixin := schema.MessageRecords{}.Mixin()
  923. messagerecordsMixinFields0 := messagerecordsMixin[0].Fields()
  924. _ = messagerecordsMixinFields0
  925. messagerecordsMixinFields1 := messagerecordsMixin[1].Fields()
  926. _ = messagerecordsMixinFields1
  927. messagerecordsFields := schema.MessageRecords{}.Fields()
  928. _ = messagerecordsFields
  929. // messagerecordsDescCreatedAt is the schema descriptor for created_at field.
  930. messagerecordsDescCreatedAt := messagerecordsMixinFields0[1].Descriptor()
  931. // messagerecords.DefaultCreatedAt holds the default value on creation for the created_at field.
  932. messagerecords.DefaultCreatedAt = messagerecordsDescCreatedAt.Default.(func() time.Time)
  933. // messagerecordsDescUpdatedAt is the schema descriptor for updated_at field.
  934. messagerecordsDescUpdatedAt := messagerecordsMixinFields0[2].Descriptor()
  935. // messagerecords.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  936. messagerecords.DefaultUpdatedAt = messagerecordsDescUpdatedAt.Default.(func() time.Time)
  937. // messagerecords.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  938. messagerecords.UpdateDefaultUpdatedAt = messagerecordsDescUpdatedAt.UpdateDefault.(func() time.Time)
  939. // messagerecordsDescStatus is the schema descriptor for status field.
  940. messagerecordsDescStatus := messagerecordsMixinFields1[0].Descriptor()
  941. // messagerecords.DefaultStatus holds the default value on creation for the status field.
  942. messagerecords.DefaultStatus = messagerecordsDescStatus.Default.(uint8)
  943. // messagerecordsDescContactType is the schema descriptor for contact_type field.
  944. messagerecordsDescContactType := messagerecordsFields[2].Descriptor()
  945. // messagerecords.DefaultContactType holds the default value on creation for the contact_type field.
  946. messagerecords.DefaultContactType = messagerecordsDescContactType.Default.(int)
  947. // messagerecordsDescContactWxid is the schema descriptor for contact_wxid field.
  948. messagerecordsDescContactWxid := messagerecordsFields[3].Descriptor()
  949. // messagerecords.DefaultContactWxid holds the default value on creation for the contact_wxid field.
  950. messagerecords.DefaultContactWxid = messagerecordsDescContactWxid.Default.(string)
  951. // messagerecordsDescContentType is the schema descriptor for content_type field.
  952. messagerecordsDescContentType := messagerecordsFields[4].Descriptor()
  953. // messagerecords.DefaultContentType holds the default value on creation for the content_type field.
  954. messagerecords.DefaultContentType = messagerecordsDescContentType.Default.(int)
  955. // messagerecordsDescContent is the schema descriptor for content field.
  956. messagerecordsDescContent := messagerecordsFields[5].Descriptor()
  957. // messagerecords.DefaultContent holds the default value on creation for the content field.
  958. messagerecords.DefaultContent = messagerecordsDescContent.Default.(string)
  959. // messagerecordsDescErrorDetail is the schema descriptor for error_detail field.
  960. messagerecordsDescErrorDetail := messagerecordsFields[7].Descriptor()
  961. // messagerecords.DefaultErrorDetail holds the default value on creation for the error_detail field.
  962. messagerecords.DefaultErrorDetail = messagerecordsDescErrorDetail.Default.(string)
  963. // messagerecordsDescSourceType is the schema descriptor for source_type field.
  964. messagerecordsDescSourceType := messagerecordsFields[9].Descriptor()
  965. // messagerecords.DefaultSourceType holds the default value on creation for the source_type field.
  966. messagerecords.DefaultSourceType = messagerecordsDescSourceType.Default.(int)
  967. // messagerecordsDescSourceID is the schema descriptor for source_id field.
  968. messagerecordsDescSourceID := messagerecordsFields[10].Descriptor()
  969. // messagerecords.DefaultSourceID holds the default value on creation for the source_id field.
  970. messagerecords.DefaultSourceID = messagerecordsDescSourceID.Default.(uint64)
  971. // messagerecordsDescSubSourceID is the schema descriptor for sub_source_id field.
  972. messagerecordsDescSubSourceID := messagerecordsFields[11].Descriptor()
  973. // messagerecords.DefaultSubSourceID holds the default value on creation for the sub_source_id field.
  974. messagerecords.DefaultSubSourceID = messagerecordsDescSubSourceID.Default.(uint64)
  975. // messagerecordsDescOrganizationID is the schema descriptor for organization_id field.
  976. messagerecordsDescOrganizationID := messagerecordsFields[12].Descriptor()
  977. // messagerecords.DefaultOrganizationID holds the default value on creation for the organization_id field.
  978. messagerecords.DefaultOrganizationID = messagerecordsDescOrganizationID.Default.(uint64)
  979. msgMixin := schema.Msg{}.Mixin()
  980. msgMixinHooks1 := msgMixin[1].Hooks()
  981. msg.Hooks[0] = msgMixinHooks1[0]
  982. msgMixinInters1 := msgMixin[1].Interceptors()
  983. msg.Interceptors[0] = msgMixinInters1[0]
  984. msgMixinFields0 := msgMixin[0].Fields()
  985. _ = msgMixinFields0
  986. msgFields := schema.Msg{}.Fields()
  987. _ = msgFields
  988. // msgDescCreatedAt is the schema descriptor for created_at field.
  989. msgDescCreatedAt := msgMixinFields0[1].Descriptor()
  990. // msg.DefaultCreatedAt holds the default value on creation for the created_at field.
  991. msg.DefaultCreatedAt = msgDescCreatedAt.Default.(func() time.Time)
  992. // msgDescUpdatedAt is the schema descriptor for updated_at field.
  993. msgDescUpdatedAt := msgMixinFields0[2].Descriptor()
  994. // msg.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  995. msg.DefaultUpdatedAt = msgDescUpdatedAt.Default.(func() time.Time)
  996. // msg.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  997. msg.UpdateDefaultUpdatedAt = msgDescUpdatedAt.UpdateDefault.(func() time.Time)
  998. // msgDescCc is the schema descriptor for cc field.
  999. msgDescCc := msgFields[6].Descriptor()
  1000. // msg.DefaultCc holds the default value on creation for the cc field.
  1001. msg.DefaultCc = msgDescCc.Default.(string)
  1002. // msgDescPhone is the schema descriptor for phone field.
  1003. msgDescPhone := msgFields[7].Descriptor()
  1004. // msg.DefaultPhone holds the default value on creation for the phone field.
  1005. msg.DefaultPhone = msgDescPhone.Default.(string)
  1006. payrechargeMixin := schema.PayRecharge{}.Mixin()
  1007. payrechargeMixinHooks1 := payrechargeMixin[1].Hooks()
  1008. payrecharge.Hooks[0] = payrechargeMixinHooks1[0]
  1009. payrechargeMixinInters1 := payrechargeMixin[1].Interceptors()
  1010. payrecharge.Interceptors[0] = payrechargeMixinInters1[0]
  1011. payrechargeMixinFields0 := payrechargeMixin[0].Fields()
  1012. _ = payrechargeMixinFields0
  1013. payrechargeFields := schema.PayRecharge{}.Fields()
  1014. _ = payrechargeFields
  1015. // payrechargeDescCreatedAt is the schema descriptor for created_at field.
  1016. payrechargeDescCreatedAt := payrechargeMixinFields0[1].Descriptor()
  1017. // payrecharge.DefaultCreatedAt holds the default value on creation for the created_at field.
  1018. payrecharge.DefaultCreatedAt = payrechargeDescCreatedAt.Default.(func() time.Time)
  1019. // payrechargeDescUpdatedAt is the schema descriptor for updated_at field.
  1020. payrechargeDescUpdatedAt := payrechargeMixinFields0[2].Descriptor()
  1021. // payrecharge.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1022. payrecharge.DefaultUpdatedAt = payrechargeDescUpdatedAt.Default.(func() time.Time)
  1023. // payrecharge.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1024. payrecharge.UpdateDefaultUpdatedAt = payrechargeDescUpdatedAt.UpdateDefault.(func() time.Time)
  1025. // payrechargeDescUserID is the schema descriptor for user_id field.
  1026. payrechargeDescUserID := payrechargeFields[0].Descriptor()
  1027. // payrecharge.UserIDValidator is a validator for the "user_id" field. It is called by the builders before save.
  1028. payrecharge.UserIDValidator = payrechargeDescUserID.Validators[0].(func(string) error)
  1029. // payrechargeDescNumber is the schema descriptor for number field.
  1030. payrechargeDescNumber := payrechargeFields[1].Descriptor()
  1031. // payrecharge.DefaultNumber holds the default value on creation for the number field.
  1032. payrecharge.DefaultNumber = payrechargeDescNumber.Default.(float32)
  1033. // payrechargeDescStatus is the schema descriptor for status field.
  1034. payrechargeDescStatus := payrechargeFields[2].Descriptor()
  1035. // payrecharge.DefaultStatus holds the default value on creation for the status field.
  1036. payrecharge.DefaultStatus = payrechargeDescStatus.Default.(int)
  1037. // payrecharge.StatusValidator is a validator for the "status" field. It is called by the builders before save.
  1038. payrecharge.StatusValidator = payrechargeDescStatus.Validators[0].(func(int) error)
  1039. // payrechargeDescMoney is the schema descriptor for money field.
  1040. payrechargeDescMoney := payrechargeFields[3].Descriptor()
  1041. // payrecharge.DefaultMoney holds the default value on creation for the money field.
  1042. payrecharge.DefaultMoney = payrechargeDescMoney.Default.(float32)
  1043. // payrechargeDescOutTradeNo is the schema descriptor for out_trade_no field.
  1044. payrechargeDescOutTradeNo := payrechargeFields[4].Descriptor()
  1045. // payrecharge.DefaultOutTradeNo holds the default value on creation for the out_trade_no field.
  1046. payrecharge.DefaultOutTradeNo = payrechargeDescOutTradeNo.Default.(string)
  1047. // payrechargeDescOrganizationID is the schema descriptor for organization_id field.
  1048. payrechargeDescOrganizationID := payrechargeFields[5].Descriptor()
  1049. // payrecharge.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1050. payrecharge.DefaultOrganizationID = payrechargeDescOrganizationID.Default.(uint64)
  1051. // payrecharge.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  1052. payrecharge.OrganizationIDValidator = payrechargeDescOrganizationID.Validators[0].(func(uint64) error)
  1053. serverMixin := schema.Server{}.Mixin()
  1054. serverMixinHooks2 := serverMixin[2].Hooks()
  1055. server.Hooks[0] = serverMixinHooks2[0]
  1056. serverMixinInters2 := serverMixin[2].Interceptors()
  1057. server.Interceptors[0] = serverMixinInters2[0]
  1058. serverMixinFields0 := serverMixin[0].Fields()
  1059. _ = serverMixinFields0
  1060. serverMixinFields1 := serverMixin[1].Fields()
  1061. _ = serverMixinFields1
  1062. serverFields := schema.Server{}.Fields()
  1063. _ = serverFields
  1064. // serverDescCreatedAt is the schema descriptor for created_at field.
  1065. serverDescCreatedAt := serverMixinFields0[1].Descriptor()
  1066. // server.DefaultCreatedAt holds the default value on creation for the created_at field.
  1067. server.DefaultCreatedAt = serverDescCreatedAt.Default.(func() time.Time)
  1068. // serverDescUpdatedAt is the schema descriptor for updated_at field.
  1069. serverDescUpdatedAt := serverMixinFields0[2].Descriptor()
  1070. // server.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1071. server.DefaultUpdatedAt = serverDescUpdatedAt.Default.(func() time.Time)
  1072. // server.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1073. server.UpdateDefaultUpdatedAt = serverDescUpdatedAt.UpdateDefault.(func() time.Time)
  1074. // serverDescStatus is the schema descriptor for status field.
  1075. serverDescStatus := serverMixinFields1[0].Descriptor()
  1076. // server.DefaultStatus holds the default value on creation for the status field.
  1077. server.DefaultStatus = serverDescStatus.Default.(uint8)
  1078. sopnodeMixin := schema.SopNode{}.Mixin()
  1079. sopnodeMixinHooks2 := sopnodeMixin[2].Hooks()
  1080. sopnode.Hooks[0] = sopnodeMixinHooks2[0]
  1081. sopnodeMixinInters2 := sopnodeMixin[2].Interceptors()
  1082. sopnode.Interceptors[0] = sopnodeMixinInters2[0]
  1083. sopnodeMixinFields0 := sopnodeMixin[0].Fields()
  1084. _ = sopnodeMixinFields0
  1085. sopnodeMixinFields1 := sopnodeMixin[1].Fields()
  1086. _ = sopnodeMixinFields1
  1087. sopnodeFields := schema.SopNode{}.Fields()
  1088. _ = sopnodeFields
  1089. // sopnodeDescCreatedAt is the schema descriptor for created_at field.
  1090. sopnodeDescCreatedAt := sopnodeMixinFields0[1].Descriptor()
  1091. // sopnode.DefaultCreatedAt holds the default value on creation for the created_at field.
  1092. sopnode.DefaultCreatedAt = sopnodeDescCreatedAt.Default.(func() time.Time)
  1093. // sopnodeDescUpdatedAt is the schema descriptor for updated_at field.
  1094. sopnodeDescUpdatedAt := sopnodeMixinFields0[2].Descriptor()
  1095. // sopnode.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1096. sopnode.DefaultUpdatedAt = sopnodeDescUpdatedAt.Default.(func() time.Time)
  1097. // sopnode.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1098. sopnode.UpdateDefaultUpdatedAt = sopnodeDescUpdatedAt.UpdateDefault.(func() time.Time)
  1099. // sopnodeDescStatus is the schema descriptor for status field.
  1100. sopnodeDescStatus := sopnodeMixinFields1[0].Descriptor()
  1101. // sopnode.DefaultStatus holds the default value on creation for the status field.
  1102. sopnode.DefaultStatus = sopnodeDescStatus.Default.(uint8)
  1103. // sopnodeDescName is the schema descriptor for name field.
  1104. sopnodeDescName := sopnodeFields[2].Descriptor()
  1105. // sopnode.DefaultName holds the default value on creation for the name field.
  1106. sopnode.DefaultName = sopnodeDescName.Default.(string)
  1107. // sopnodeDescConditionType is the schema descriptor for condition_type field.
  1108. sopnodeDescConditionType := sopnodeFields[3].Descriptor()
  1109. // sopnode.DefaultConditionType holds the default value on creation for the condition_type field.
  1110. sopnode.DefaultConditionType = sopnodeDescConditionType.Default.(int)
  1111. // sopnodeDescNoReplyCondition is the schema descriptor for no_reply_condition field.
  1112. sopnodeDescNoReplyCondition := sopnodeFields[5].Descriptor()
  1113. // sopnode.DefaultNoReplyCondition holds the default value on creation for the no_reply_condition field.
  1114. sopnode.DefaultNoReplyCondition = sopnodeDescNoReplyCondition.Default.(uint64)
  1115. // sopnodeDescNoReplyUnit is the schema descriptor for no_reply_unit field.
  1116. sopnodeDescNoReplyUnit := sopnodeFields[6].Descriptor()
  1117. // sopnode.DefaultNoReplyUnit holds the default value on creation for the no_reply_unit field.
  1118. sopnode.DefaultNoReplyUnit = sopnodeDescNoReplyUnit.Default.(string)
  1119. sopstageMixin := schema.SopStage{}.Mixin()
  1120. sopstageMixinHooks2 := sopstageMixin[2].Hooks()
  1121. sopstage.Hooks[0] = sopstageMixinHooks2[0]
  1122. sopstageMixinInters2 := sopstageMixin[2].Interceptors()
  1123. sopstage.Interceptors[0] = sopstageMixinInters2[0]
  1124. sopstageMixinFields0 := sopstageMixin[0].Fields()
  1125. _ = sopstageMixinFields0
  1126. sopstageMixinFields1 := sopstageMixin[1].Fields()
  1127. _ = sopstageMixinFields1
  1128. sopstageFields := schema.SopStage{}.Fields()
  1129. _ = sopstageFields
  1130. // sopstageDescCreatedAt is the schema descriptor for created_at field.
  1131. sopstageDescCreatedAt := sopstageMixinFields0[1].Descriptor()
  1132. // sopstage.DefaultCreatedAt holds the default value on creation for the created_at field.
  1133. sopstage.DefaultCreatedAt = sopstageDescCreatedAt.Default.(func() time.Time)
  1134. // sopstageDescUpdatedAt is the schema descriptor for updated_at field.
  1135. sopstageDescUpdatedAt := sopstageMixinFields0[2].Descriptor()
  1136. // sopstage.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1137. sopstage.DefaultUpdatedAt = sopstageDescUpdatedAt.Default.(func() time.Time)
  1138. // sopstage.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1139. sopstage.UpdateDefaultUpdatedAt = sopstageDescUpdatedAt.UpdateDefault.(func() time.Time)
  1140. // sopstageDescStatus is the schema descriptor for status field.
  1141. sopstageDescStatus := sopstageMixinFields1[0].Descriptor()
  1142. // sopstage.DefaultStatus holds the default value on creation for the status field.
  1143. sopstage.DefaultStatus = sopstageDescStatus.Default.(uint8)
  1144. // sopstageDescName is the schema descriptor for name field.
  1145. sopstageDescName := sopstageFields[1].Descriptor()
  1146. // sopstage.DefaultName holds the default value on creation for the name field.
  1147. sopstage.DefaultName = sopstageDescName.Default.(string)
  1148. // sopstageDescConditionType is the schema descriptor for condition_type field.
  1149. sopstageDescConditionType := sopstageFields[2].Descriptor()
  1150. // sopstage.DefaultConditionType holds the default value on creation for the condition_type field.
  1151. sopstage.DefaultConditionType = sopstageDescConditionType.Default.(int)
  1152. // sopstageDescConditionOperator is the schema descriptor for condition_operator field.
  1153. sopstageDescConditionOperator := sopstageFields[3].Descriptor()
  1154. // sopstage.DefaultConditionOperator holds the default value on creation for the condition_operator field.
  1155. sopstage.DefaultConditionOperator = sopstageDescConditionOperator.Default.(int)
  1156. // sopstageDescIndexSort is the schema descriptor for index_sort field.
  1157. sopstageDescIndexSort := sopstageFields[9].Descriptor()
  1158. // sopstage.DefaultIndexSort holds the default value on creation for the index_sort field.
  1159. sopstage.DefaultIndexSort = sopstageDescIndexSort.Default.(int)
  1160. soptaskMixin := schema.SopTask{}.Mixin()
  1161. soptaskMixinHooks2 := soptaskMixin[2].Hooks()
  1162. soptask.Hooks[0] = soptaskMixinHooks2[0]
  1163. soptaskMixinInters2 := soptaskMixin[2].Interceptors()
  1164. soptask.Interceptors[0] = soptaskMixinInters2[0]
  1165. soptaskMixinFields0 := soptaskMixin[0].Fields()
  1166. _ = soptaskMixinFields0
  1167. soptaskMixinFields1 := soptaskMixin[1].Fields()
  1168. _ = soptaskMixinFields1
  1169. soptaskFields := schema.SopTask{}.Fields()
  1170. _ = soptaskFields
  1171. // soptaskDescCreatedAt is the schema descriptor for created_at field.
  1172. soptaskDescCreatedAt := soptaskMixinFields0[1].Descriptor()
  1173. // soptask.DefaultCreatedAt holds the default value on creation for the created_at field.
  1174. soptask.DefaultCreatedAt = soptaskDescCreatedAt.Default.(func() time.Time)
  1175. // soptaskDescUpdatedAt is the schema descriptor for updated_at field.
  1176. soptaskDescUpdatedAt := soptaskMixinFields0[2].Descriptor()
  1177. // soptask.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1178. soptask.DefaultUpdatedAt = soptaskDescUpdatedAt.Default.(func() time.Time)
  1179. // soptask.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1180. soptask.UpdateDefaultUpdatedAt = soptaskDescUpdatedAt.UpdateDefault.(func() time.Time)
  1181. // soptaskDescStatus is the schema descriptor for status field.
  1182. soptaskDescStatus := soptaskMixinFields1[0].Descriptor()
  1183. // soptask.DefaultStatus holds the default value on creation for the status field.
  1184. soptask.DefaultStatus = soptaskDescStatus.Default.(uint8)
  1185. // soptaskDescName is the schema descriptor for name field.
  1186. soptaskDescName := soptaskFields[0].Descriptor()
  1187. // soptask.NameValidator is a validator for the "name" field. It is called by the builders before save.
  1188. soptask.NameValidator = soptaskDescName.Validators[0].(func(string) error)
  1189. // soptaskDescType is the schema descriptor for type field.
  1190. soptaskDescType := soptaskFields[2].Descriptor()
  1191. // soptask.DefaultType holds the default value on creation for the type field.
  1192. soptask.DefaultType = soptaskDescType.Default.(int)
  1193. // soptaskDescOrganizationID is the schema descriptor for organization_id field.
  1194. soptaskDescOrganizationID := soptaskFields[6].Descriptor()
  1195. // soptask.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1196. soptask.DefaultOrganizationID = soptaskDescOrganizationID.Default.(uint64)
  1197. tokenMixin := schema.Token{}.Mixin()
  1198. tokenMixinHooks1 := tokenMixin[1].Hooks()
  1199. token.Hooks[0] = tokenMixinHooks1[0]
  1200. tokenMixinInters1 := tokenMixin[1].Interceptors()
  1201. token.Interceptors[0] = tokenMixinInters1[0]
  1202. tokenMixinFields0 := tokenMixin[0].Fields()
  1203. _ = tokenMixinFields0
  1204. tokenFields := schema.Token{}.Fields()
  1205. _ = tokenFields
  1206. // tokenDescCreatedAt is the schema descriptor for created_at field.
  1207. tokenDescCreatedAt := tokenMixinFields0[1].Descriptor()
  1208. // token.DefaultCreatedAt holds the default value on creation for the created_at field.
  1209. token.DefaultCreatedAt = tokenDescCreatedAt.Default.(func() time.Time)
  1210. // tokenDescUpdatedAt is the schema descriptor for updated_at field.
  1211. tokenDescUpdatedAt := tokenMixinFields0[2].Descriptor()
  1212. // token.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1213. token.DefaultUpdatedAt = tokenDescUpdatedAt.Default.(func() time.Time)
  1214. // token.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1215. token.UpdateDefaultUpdatedAt = tokenDescUpdatedAt.UpdateDefault.(func() time.Time)
  1216. // tokenDescToken is the schema descriptor for token field.
  1217. tokenDescToken := tokenFields[1].Descriptor()
  1218. // token.DefaultToken holds the default value on creation for the token field.
  1219. token.DefaultToken = tokenDescToken.Default.(string)
  1220. // tokenDescMAC is the schema descriptor for mac field.
  1221. tokenDescMAC := tokenFields[2].Descriptor()
  1222. // token.DefaultMAC holds the default value on creation for the mac field.
  1223. token.DefaultMAC = tokenDescMAC.Default.(string)
  1224. // tokenDescOrganizationID is the schema descriptor for organization_id field.
  1225. tokenDescOrganizationID := tokenFields[3].Descriptor()
  1226. // token.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1227. token.DefaultOrganizationID = tokenDescOrganizationID.Default.(uint64)
  1228. // tokenDescAgentID is the schema descriptor for agent_id field.
  1229. tokenDescAgentID := tokenFields[4].Descriptor()
  1230. // token.DefaultAgentID holds the default value on creation for the agent_id field.
  1231. token.DefaultAgentID = tokenDescAgentID.Default.(uint64)
  1232. // tokenDescCustomAgentBase is the schema descriptor for custom_agent_base field.
  1233. tokenDescCustomAgentBase := tokenFields[5].Descriptor()
  1234. // token.DefaultCustomAgentBase holds the default value on creation for the custom_agent_base field.
  1235. token.DefaultCustomAgentBase = tokenDescCustomAgentBase.Default.(string)
  1236. // tokenDescCustomAgentKey is the schema descriptor for custom_agent_key field.
  1237. tokenDescCustomAgentKey := tokenFields[6].Descriptor()
  1238. // token.DefaultCustomAgentKey holds the default value on creation for the custom_agent_key field.
  1239. token.DefaultCustomAgentKey = tokenDescCustomAgentKey.Default.(string)
  1240. // tokenDescOpenaiBase is the schema descriptor for openai_base field.
  1241. tokenDescOpenaiBase := tokenFields[7].Descriptor()
  1242. // token.DefaultOpenaiBase holds the default value on creation for the openai_base field.
  1243. token.DefaultOpenaiBase = tokenDescOpenaiBase.Default.(string)
  1244. // tokenDescOpenaiKey is the schema descriptor for openai_key field.
  1245. tokenDescOpenaiKey := tokenFields[8].Descriptor()
  1246. // token.DefaultOpenaiKey holds the default value on creation for the openai_key field.
  1247. token.DefaultOpenaiKey = tokenDescOpenaiKey.Default.(string)
  1248. tutorialMixin := schema.Tutorial{}.Mixin()
  1249. tutorialMixinHooks1 := tutorialMixin[1].Hooks()
  1250. tutorial.Hooks[0] = tutorialMixinHooks1[0]
  1251. tutorialMixinInters1 := tutorialMixin[1].Interceptors()
  1252. tutorial.Interceptors[0] = tutorialMixinInters1[0]
  1253. tutorialMixinFields0 := tutorialMixin[0].Fields()
  1254. _ = tutorialMixinFields0
  1255. tutorialFields := schema.Tutorial{}.Fields()
  1256. _ = tutorialFields
  1257. // tutorialDescCreatedAt is the schema descriptor for created_at field.
  1258. tutorialDescCreatedAt := tutorialMixinFields0[1].Descriptor()
  1259. // tutorial.DefaultCreatedAt holds the default value on creation for the created_at field.
  1260. tutorial.DefaultCreatedAt = tutorialDescCreatedAt.Default.(func() time.Time)
  1261. // tutorialDescUpdatedAt is the schema descriptor for updated_at field.
  1262. tutorialDescUpdatedAt := tutorialMixinFields0[2].Descriptor()
  1263. // tutorial.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1264. tutorial.DefaultUpdatedAt = tutorialDescUpdatedAt.Default.(func() time.Time)
  1265. // tutorial.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1266. tutorial.UpdateDefaultUpdatedAt = tutorialDescUpdatedAt.UpdateDefault.(func() time.Time)
  1267. // tutorialDescEmployeeID is the schema descriptor for employee_id field.
  1268. tutorialDescEmployeeID := tutorialFields[0].Descriptor()
  1269. // tutorial.EmployeeIDValidator is a validator for the "employee_id" field. It is called by the builders before save.
  1270. tutorial.EmployeeIDValidator = tutorialDescEmployeeID.Validators[0].(func(uint64) error)
  1271. // tutorialDescOrganizationID is the schema descriptor for organization_id field.
  1272. tutorialDescOrganizationID := tutorialFields[4].Descriptor()
  1273. // tutorial.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  1274. tutorial.OrganizationIDValidator = tutorialDescOrganizationID.Validators[0].(func(uint64) error)
  1275. usagedetailMixin := schema.UsageDetail{}.Mixin()
  1276. usagedetailMixinFields0 := usagedetailMixin[0].Fields()
  1277. _ = usagedetailMixinFields0
  1278. usagedetailMixinFields1 := usagedetailMixin[1].Fields()
  1279. _ = usagedetailMixinFields1
  1280. usagedetailFields := schema.UsageDetail{}.Fields()
  1281. _ = usagedetailFields
  1282. // usagedetailDescCreatedAt is the schema descriptor for created_at field.
  1283. usagedetailDescCreatedAt := usagedetailMixinFields0[1].Descriptor()
  1284. // usagedetail.DefaultCreatedAt holds the default value on creation for the created_at field.
  1285. usagedetail.DefaultCreatedAt = usagedetailDescCreatedAt.Default.(func() time.Time)
  1286. // usagedetailDescUpdatedAt is the schema descriptor for updated_at field.
  1287. usagedetailDescUpdatedAt := usagedetailMixinFields0[2].Descriptor()
  1288. // usagedetail.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1289. usagedetail.DefaultUpdatedAt = usagedetailDescUpdatedAt.Default.(func() time.Time)
  1290. // usagedetail.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1291. usagedetail.UpdateDefaultUpdatedAt = usagedetailDescUpdatedAt.UpdateDefault.(func() time.Time)
  1292. // usagedetailDescStatus is the schema descriptor for status field.
  1293. usagedetailDescStatus := usagedetailMixinFields1[0].Descriptor()
  1294. // usagedetail.DefaultStatus holds the default value on creation for the status field.
  1295. usagedetail.DefaultStatus = usagedetailDescStatus.Default.(uint8)
  1296. // usagedetailDescType is the schema descriptor for type field.
  1297. usagedetailDescType := usagedetailFields[0].Descriptor()
  1298. // usagedetail.DefaultType holds the default value on creation for the type field.
  1299. usagedetail.DefaultType = usagedetailDescType.Default.(int)
  1300. // usagedetailDescBotID is the schema descriptor for bot_id field.
  1301. usagedetailDescBotID := usagedetailFields[1].Descriptor()
  1302. // usagedetail.DefaultBotID holds the default value on creation for the bot_id field.
  1303. usagedetail.DefaultBotID = usagedetailDescBotID.Default.(string)
  1304. // usagedetailDescReceiverID is the schema descriptor for receiver_id field.
  1305. usagedetailDescReceiverID := usagedetailFields[2].Descriptor()
  1306. // usagedetail.DefaultReceiverID holds the default value on creation for the receiver_id field.
  1307. usagedetail.DefaultReceiverID = usagedetailDescReceiverID.Default.(string)
  1308. // usagedetailDescApp is the schema descriptor for app field.
  1309. usagedetailDescApp := usagedetailFields[3].Descriptor()
  1310. // usagedetail.DefaultApp holds the default value on creation for the app field.
  1311. usagedetail.DefaultApp = usagedetailDescApp.Default.(int)
  1312. // usagedetailDescSessionID is the schema descriptor for session_id field.
  1313. usagedetailDescSessionID := usagedetailFields[4].Descriptor()
  1314. // usagedetail.DefaultSessionID holds the default value on creation for the session_id field.
  1315. usagedetail.DefaultSessionID = usagedetailDescSessionID.Default.(uint64)
  1316. // usagedetailDescRequest is the schema descriptor for request field.
  1317. usagedetailDescRequest := usagedetailFields[5].Descriptor()
  1318. // usagedetail.DefaultRequest holds the default value on creation for the request field.
  1319. usagedetail.DefaultRequest = usagedetailDescRequest.Default.(string)
  1320. // usagedetailDescResponse is the schema descriptor for response field.
  1321. usagedetailDescResponse := usagedetailFields[6].Descriptor()
  1322. // usagedetail.DefaultResponse holds the default value on creation for the response field.
  1323. usagedetail.DefaultResponse = usagedetailDescResponse.Default.(string)
  1324. // usagedetailDescTotalTokens is the schema descriptor for total_tokens field.
  1325. usagedetailDescTotalTokens := usagedetailFields[8].Descriptor()
  1326. // usagedetail.DefaultTotalTokens holds the default value on creation for the total_tokens field.
  1327. usagedetail.DefaultTotalTokens = usagedetailDescTotalTokens.Default.(uint64)
  1328. // usagedetailDescPromptTokens is the schema descriptor for prompt_tokens field.
  1329. usagedetailDescPromptTokens := usagedetailFields[9].Descriptor()
  1330. // usagedetail.DefaultPromptTokens holds the default value on creation for the prompt_tokens field.
  1331. usagedetail.DefaultPromptTokens = usagedetailDescPromptTokens.Default.(uint64)
  1332. // usagedetailDescCompletionTokens is the schema descriptor for completion_tokens field.
  1333. usagedetailDescCompletionTokens := usagedetailFields[10].Descriptor()
  1334. // usagedetail.DefaultCompletionTokens holds the default value on creation for the completion_tokens field.
  1335. usagedetail.DefaultCompletionTokens = usagedetailDescCompletionTokens.Default.(uint64)
  1336. // usagedetailDescOrganizationID is the schema descriptor for organization_id field.
  1337. usagedetailDescOrganizationID := usagedetailFields[11].Descriptor()
  1338. // usagedetail.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1339. usagedetail.DefaultOrganizationID = usagedetailDescOrganizationID.Default.(uint64)
  1340. usagestatisticdayMixin := schema.UsageStatisticDay{}.Mixin()
  1341. usagestatisticdayMixinHooks2 := usagestatisticdayMixin[2].Hooks()
  1342. usagestatisticday.Hooks[0] = usagestatisticdayMixinHooks2[0]
  1343. usagestatisticdayMixinInters2 := usagestatisticdayMixin[2].Interceptors()
  1344. usagestatisticday.Interceptors[0] = usagestatisticdayMixinInters2[0]
  1345. usagestatisticdayMixinFields0 := usagestatisticdayMixin[0].Fields()
  1346. _ = usagestatisticdayMixinFields0
  1347. usagestatisticdayMixinFields1 := usagestatisticdayMixin[1].Fields()
  1348. _ = usagestatisticdayMixinFields1
  1349. usagestatisticdayFields := schema.UsageStatisticDay{}.Fields()
  1350. _ = usagestatisticdayFields
  1351. // usagestatisticdayDescCreatedAt is the schema descriptor for created_at field.
  1352. usagestatisticdayDescCreatedAt := usagestatisticdayMixinFields0[1].Descriptor()
  1353. // usagestatisticday.DefaultCreatedAt holds the default value on creation for the created_at field.
  1354. usagestatisticday.DefaultCreatedAt = usagestatisticdayDescCreatedAt.Default.(func() time.Time)
  1355. // usagestatisticdayDescUpdatedAt is the schema descriptor for updated_at field.
  1356. usagestatisticdayDescUpdatedAt := usagestatisticdayMixinFields0[2].Descriptor()
  1357. // usagestatisticday.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1358. usagestatisticday.DefaultUpdatedAt = usagestatisticdayDescUpdatedAt.Default.(func() time.Time)
  1359. // usagestatisticday.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1360. usagestatisticday.UpdateDefaultUpdatedAt = usagestatisticdayDescUpdatedAt.UpdateDefault.(func() time.Time)
  1361. // usagestatisticdayDescStatus is the schema descriptor for status field.
  1362. usagestatisticdayDescStatus := usagestatisticdayMixinFields1[0].Descriptor()
  1363. // usagestatisticday.DefaultStatus holds the default value on creation for the status field.
  1364. usagestatisticday.DefaultStatus = usagestatisticdayDescStatus.Default.(uint8)
  1365. usagestatistichourMixin := schema.UsageStatisticHour{}.Mixin()
  1366. usagestatistichourMixinHooks2 := usagestatistichourMixin[2].Hooks()
  1367. usagestatistichour.Hooks[0] = usagestatistichourMixinHooks2[0]
  1368. usagestatistichourMixinInters2 := usagestatistichourMixin[2].Interceptors()
  1369. usagestatistichour.Interceptors[0] = usagestatistichourMixinInters2[0]
  1370. usagestatistichourMixinFields0 := usagestatistichourMixin[0].Fields()
  1371. _ = usagestatistichourMixinFields0
  1372. usagestatistichourMixinFields1 := usagestatistichourMixin[1].Fields()
  1373. _ = usagestatistichourMixinFields1
  1374. usagestatistichourFields := schema.UsageStatisticHour{}.Fields()
  1375. _ = usagestatistichourFields
  1376. // usagestatistichourDescCreatedAt is the schema descriptor for created_at field.
  1377. usagestatistichourDescCreatedAt := usagestatistichourMixinFields0[1].Descriptor()
  1378. // usagestatistichour.DefaultCreatedAt holds the default value on creation for the created_at field.
  1379. usagestatistichour.DefaultCreatedAt = usagestatistichourDescCreatedAt.Default.(func() time.Time)
  1380. // usagestatistichourDescUpdatedAt is the schema descriptor for updated_at field.
  1381. usagestatistichourDescUpdatedAt := usagestatistichourMixinFields0[2].Descriptor()
  1382. // usagestatistichour.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1383. usagestatistichour.DefaultUpdatedAt = usagestatistichourDescUpdatedAt.Default.(func() time.Time)
  1384. // usagestatistichour.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1385. usagestatistichour.UpdateDefaultUpdatedAt = usagestatistichourDescUpdatedAt.UpdateDefault.(func() time.Time)
  1386. // usagestatistichourDescStatus is the schema descriptor for status field.
  1387. usagestatistichourDescStatus := usagestatistichourMixinFields1[0].Descriptor()
  1388. // usagestatistichour.DefaultStatus holds the default value on creation for the status field.
  1389. usagestatistichour.DefaultStatus = usagestatistichourDescStatus.Default.(uint8)
  1390. usagestatisticmonthMixin := schema.UsageStatisticMonth{}.Mixin()
  1391. usagestatisticmonthMixinHooks2 := usagestatisticmonthMixin[2].Hooks()
  1392. usagestatisticmonth.Hooks[0] = usagestatisticmonthMixinHooks2[0]
  1393. usagestatisticmonthMixinInters2 := usagestatisticmonthMixin[2].Interceptors()
  1394. usagestatisticmonth.Interceptors[0] = usagestatisticmonthMixinInters2[0]
  1395. usagestatisticmonthMixinFields0 := usagestatisticmonthMixin[0].Fields()
  1396. _ = usagestatisticmonthMixinFields0
  1397. usagestatisticmonthMixinFields1 := usagestatisticmonthMixin[1].Fields()
  1398. _ = usagestatisticmonthMixinFields1
  1399. usagestatisticmonthFields := schema.UsageStatisticMonth{}.Fields()
  1400. _ = usagestatisticmonthFields
  1401. // usagestatisticmonthDescCreatedAt is the schema descriptor for created_at field.
  1402. usagestatisticmonthDescCreatedAt := usagestatisticmonthMixinFields0[1].Descriptor()
  1403. // usagestatisticmonth.DefaultCreatedAt holds the default value on creation for the created_at field.
  1404. usagestatisticmonth.DefaultCreatedAt = usagestatisticmonthDescCreatedAt.Default.(func() time.Time)
  1405. // usagestatisticmonthDescUpdatedAt is the schema descriptor for updated_at field.
  1406. usagestatisticmonthDescUpdatedAt := usagestatisticmonthMixinFields0[2].Descriptor()
  1407. // usagestatisticmonth.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1408. usagestatisticmonth.DefaultUpdatedAt = usagestatisticmonthDescUpdatedAt.Default.(func() time.Time)
  1409. // usagestatisticmonth.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1410. usagestatisticmonth.UpdateDefaultUpdatedAt = usagestatisticmonthDescUpdatedAt.UpdateDefault.(func() time.Time)
  1411. // usagestatisticmonthDescStatus is the schema descriptor for status field.
  1412. usagestatisticmonthDescStatus := usagestatisticmonthMixinFields1[0].Descriptor()
  1413. // usagestatisticmonth.DefaultStatus holds the default value on creation for the status field.
  1414. usagestatisticmonth.DefaultStatus = usagestatisticmonthDescStatus.Default.(uint8)
  1415. usagetotalMixin := schema.UsageTotal{}.Mixin()
  1416. usagetotalMixinFields0 := usagetotalMixin[0].Fields()
  1417. _ = usagetotalMixinFields0
  1418. usagetotalMixinFields1 := usagetotalMixin[1].Fields()
  1419. _ = usagetotalMixinFields1
  1420. usagetotalFields := schema.UsageTotal{}.Fields()
  1421. _ = usagetotalFields
  1422. // usagetotalDescCreatedAt is the schema descriptor for created_at field.
  1423. usagetotalDescCreatedAt := usagetotalMixinFields0[1].Descriptor()
  1424. // usagetotal.DefaultCreatedAt holds the default value on creation for the created_at field.
  1425. usagetotal.DefaultCreatedAt = usagetotalDescCreatedAt.Default.(func() time.Time)
  1426. // usagetotalDescUpdatedAt is the schema descriptor for updated_at field.
  1427. usagetotalDescUpdatedAt := usagetotalMixinFields0[2].Descriptor()
  1428. // usagetotal.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1429. usagetotal.DefaultUpdatedAt = usagetotalDescUpdatedAt.Default.(func() time.Time)
  1430. // usagetotal.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1431. usagetotal.UpdateDefaultUpdatedAt = usagetotalDescUpdatedAt.UpdateDefault.(func() time.Time)
  1432. // usagetotalDescStatus is the schema descriptor for status field.
  1433. usagetotalDescStatus := usagetotalMixinFields1[0].Descriptor()
  1434. // usagetotal.DefaultStatus holds the default value on creation for the status field.
  1435. usagetotal.DefaultStatus = usagetotalDescStatus.Default.(uint8)
  1436. // usagetotalDescType is the schema descriptor for type field.
  1437. usagetotalDescType := usagetotalFields[0].Descriptor()
  1438. // usagetotal.DefaultType holds the default value on creation for the type field.
  1439. usagetotal.DefaultType = usagetotalDescType.Default.(int)
  1440. // usagetotalDescBotID is the schema descriptor for bot_id field.
  1441. usagetotalDescBotID := usagetotalFields[1].Descriptor()
  1442. // usagetotal.DefaultBotID holds the default value on creation for the bot_id field.
  1443. usagetotal.DefaultBotID = usagetotalDescBotID.Default.(string)
  1444. // usagetotalDescTotalTokens is the schema descriptor for total_tokens field.
  1445. usagetotalDescTotalTokens := usagetotalFields[2].Descriptor()
  1446. // usagetotal.DefaultTotalTokens holds the default value on creation for the total_tokens field.
  1447. usagetotal.DefaultTotalTokens = usagetotalDescTotalTokens.Default.(uint64)
  1448. // usagetotalDescStartIndex is the schema descriptor for start_index field.
  1449. usagetotalDescStartIndex := usagetotalFields[3].Descriptor()
  1450. // usagetotal.DefaultStartIndex holds the default value on creation for the start_index field.
  1451. usagetotal.DefaultStartIndex = usagetotalDescStartIndex.Default.(uint64)
  1452. // usagetotalDescEndIndex is the schema descriptor for end_index field.
  1453. usagetotalDescEndIndex := usagetotalFields[4].Descriptor()
  1454. // usagetotal.DefaultEndIndex holds the default value on creation for the end_index field.
  1455. usagetotal.DefaultEndIndex = usagetotalDescEndIndex.Default.(uint64)
  1456. // usagetotalDescOrganizationID is the schema descriptor for organization_id field.
  1457. usagetotalDescOrganizationID := usagetotalFields[5].Descriptor()
  1458. // usagetotal.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1459. usagetotal.DefaultOrganizationID = usagetotalDescOrganizationID.Default.(uint64)
  1460. whatsappMixin := schema.Whatsapp{}.Mixin()
  1461. whatsappMixinHooks2 := whatsappMixin[2].Hooks()
  1462. whatsapp.Hooks[0] = whatsappMixinHooks2[0]
  1463. whatsappMixinInters2 := whatsappMixin[2].Interceptors()
  1464. whatsapp.Interceptors[0] = whatsappMixinInters2[0]
  1465. whatsappMixinFields0 := whatsappMixin[0].Fields()
  1466. _ = whatsappMixinFields0
  1467. whatsappMixinFields1 := whatsappMixin[1].Fields()
  1468. _ = whatsappMixinFields1
  1469. whatsappFields := schema.Whatsapp{}.Fields()
  1470. _ = whatsappFields
  1471. // whatsappDescCreatedAt is the schema descriptor for created_at field.
  1472. whatsappDescCreatedAt := whatsappMixinFields0[1].Descriptor()
  1473. // whatsapp.DefaultCreatedAt holds the default value on creation for the created_at field.
  1474. whatsapp.DefaultCreatedAt = whatsappDescCreatedAt.Default.(func() time.Time)
  1475. // whatsappDescUpdatedAt is the schema descriptor for updated_at field.
  1476. whatsappDescUpdatedAt := whatsappMixinFields0[2].Descriptor()
  1477. // whatsapp.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1478. whatsapp.DefaultUpdatedAt = whatsappDescUpdatedAt.Default.(func() time.Time)
  1479. // whatsapp.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1480. whatsapp.UpdateDefaultUpdatedAt = whatsappDescUpdatedAt.UpdateDefault.(func() time.Time)
  1481. // whatsappDescStatus is the schema descriptor for status field.
  1482. whatsappDescStatus := whatsappMixinFields1[0].Descriptor()
  1483. // whatsapp.DefaultStatus holds the default value on creation for the status field.
  1484. whatsapp.DefaultStatus = whatsappDescStatus.Default.(uint8)
  1485. // whatsappDescWaID is the schema descriptor for wa_id field.
  1486. whatsappDescWaID := whatsappFields[0].Descriptor()
  1487. // whatsapp.DefaultWaID holds the default value on creation for the wa_id field.
  1488. whatsapp.DefaultWaID = whatsappDescWaID.Default.(string)
  1489. // whatsappDescWaName is the schema descriptor for wa_name field.
  1490. whatsappDescWaName := whatsappFields[1].Descriptor()
  1491. // whatsapp.DefaultWaName holds the default value on creation for the wa_name field.
  1492. whatsapp.DefaultWaName = whatsappDescWaName.Default.(string)
  1493. // whatsappDescCallback is the schema descriptor for callback field.
  1494. whatsappDescCallback := whatsappFields[2].Descriptor()
  1495. // whatsapp.DefaultCallback holds the default value on creation for the callback field.
  1496. whatsapp.DefaultCallback = whatsappDescCallback.Default.(string)
  1497. // whatsappDescAgentID is the schema descriptor for agent_id field.
  1498. whatsappDescAgentID := whatsappFields[3].Descriptor()
  1499. // whatsapp.DefaultAgentID holds the default value on creation for the agent_id field.
  1500. whatsapp.DefaultAgentID = whatsappDescAgentID.Default.(uint64)
  1501. // whatsappDescAccount is the schema descriptor for account field.
  1502. whatsappDescAccount := whatsappFields[4].Descriptor()
  1503. // whatsapp.DefaultAccount holds the default value on creation for the account field.
  1504. whatsapp.DefaultAccount = whatsappDescAccount.Default.(string)
  1505. // whatsappDescCc is the schema descriptor for cc field.
  1506. whatsappDescCc := whatsappFields[5].Descriptor()
  1507. // whatsapp.DefaultCc holds the default value on creation for the cc field.
  1508. whatsapp.DefaultCc = whatsappDescCc.Default.(string)
  1509. // whatsappDescPhone is the schema descriptor for phone field.
  1510. whatsappDescPhone := whatsappFields[6].Descriptor()
  1511. // whatsapp.DefaultPhone holds the default value on creation for the phone field.
  1512. whatsapp.DefaultPhone = whatsappDescPhone.Default.(string)
  1513. // whatsappDescCcPhone is the schema descriptor for cc_phone field.
  1514. whatsappDescCcPhone := whatsappFields[7].Descriptor()
  1515. // whatsapp.DefaultCcPhone holds the default value on creation for the cc_phone field.
  1516. whatsapp.DefaultCcPhone = whatsappDescCcPhone.Default.(string)
  1517. // whatsappDescPhoneName is the schema descriptor for phone_name field.
  1518. whatsappDescPhoneName := whatsappFields[8].Descriptor()
  1519. // whatsapp.DefaultPhoneName holds the default value on creation for the phone_name field.
  1520. whatsapp.DefaultPhoneName = whatsappDescPhoneName.Default.(string)
  1521. // whatsappDescPhoneStatus is the schema descriptor for phone_status field.
  1522. whatsappDescPhoneStatus := whatsappFields[9].Descriptor()
  1523. // whatsapp.DefaultPhoneStatus holds the default value on creation for the phone_status field.
  1524. whatsapp.DefaultPhoneStatus = whatsappDescPhoneStatus.Default.(int8)
  1525. // whatsappDescOrganizationID is the schema descriptor for organization_id field.
  1526. whatsappDescOrganizationID := whatsappFields[10].Descriptor()
  1527. // whatsapp.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1528. whatsapp.DefaultOrganizationID = whatsappDescOrganizationID.Default.(uint64)
  1529. // whatsappDescAPIBase is the schema descriptor for api_base field.
  1530. whatsappDescAPIBase := whatsappFields[11].Descriptor()
  1531. // whatsapp.DefaultAPIBase holds the default value on creation for the api_base field.
  1532. whatsapp.DefaultAPIBase = whatsappDescAPIBase.Default.(string)
  1533. // whatsappDescAPIKey is the schema descriptor for api_key field.
  1534. whatsappDescAPIKey := whatsappFields[12].Descriptor()
  1535. // whatsapp.DefaultAPIKey holds the default value on creation for the api_key field.
  1536. whatsapp.DefaultAPIKey = whatsappDescAPIKey.Default.(string)
  1537. whatsappchannelMixin := schema.WhatsappChannel{}.Mixin()
  1538. whatsappchannelMixinHooks2 := whatsappchannelMixin[2].Hooks()
  1539. whatsappchannel.Hooks[0] = whatsappchannelMixinHooks2[0]
  1540. whatsappchannelMixinInters2 := whatsappchannelMixin[2].Interceptors()
  1541. whatsappchannel.Interceptors[0] = whatsappchannelMixinInters2[0]
  1542. whatsappchannelMixinFields0 := whatsappchannelMixin[0].Fields()
  1543. _ = whatsappchannelMixinFields0
  1544. whatsappchannelMixinFields1 := whatsappchannelMixin[1].Fields()
  1545. _ = whatsappchannelMixinFields1
  1546. whatsappchannelFields := schema.WhatsappChannel{}.Fields()
  1547. _ = whatsappchannelFields
  1548. // whatsappchannelDescCreatedAt is the schema descriptor for created_at field.
  1549. whatsappchannelDescCreatedAt := whatsappchannelMixinFields0[1].Descriptor()
  1550. // whatsappchannel.DefaultCreatedAt holds the default value on creation for the created_at field.
  1551. whatsappchannel.DefaultCreatedAt = whatsappchannelDescCreatedAt.Default.(func() time.Time)
  1552. // whatsappchannelDescUpdatedAt is the schema descriptor for updated_at field.
  1553. whatsappchannelDescUpdatedAt := whatsappchannelMixinFields0[2].Descriptor()
  1554. // whatsappchannel.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1555. whatsappchannel.DefaultUpdatedAt = whatsappchannelDescUpdatedAt.Default.(func() time.Time)
  1556. // whatsappchannel.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1557. whatsappchannel.UpdateDefaultUpdatedAt = whatsappchannelDescUpdatedAt.UpdateDefault.(func() time.Time)
  1558. // whatsappchannelDescStatus is the schema descriptor for status field.
  1559. whatsappchannelDescStatus := whatsappchannelMixinFields1[0].Descriptor()
  1560. // whatsappchannel.DefaultStatus holds the default value on creation for the status field.
  1561. whatsappchannel.DefaultStatus = whatsappchannelDescStatus.Default.(uint8)
  1562. // whatsappchannelDescAk is the schema descriptor for ak field.
  1563. whatsappchannelDescAk := whatsappchannelFields[0].Descriptor()
  1564. // whatsappchannel.DefaultAk holds the default value on creation for the ak field.
  1565. whatsappchannel.DefaultAk = whatsappchannelDescAk.Default.(string)
  1566. // whatsappchannelDescSk is the schema descriptor for sk field.
  1567. whatsappchannelDescSk := whatsappchannelFields[1].Descriptor()
  1568. // whatsappchannel.DefaultSk holds the default value on creation for the sk field.
  1569. whatsappchannel.DefaultSk = whatsappchannelDescSk.Default.(string)
  1570. // whatsappchannelDescWaID is the schema descriptor for wa_id field.
  1571. whatsappchannelDescWaID := whatsappchannelFields[2].Descriptor()
  1572. // whatsappchannel.DefaultWaID holds the default value on creation for the wa_id field.
  1573. whatsappchannel.DefaultWaID = whatsappchannelDescWaID.Default.(string)
  1574. // whatsappchannelDescWaName is the schema descriptor for wa_name field.
  1575. whatsappchannelDescWaName := whatsappchannelFields[3].Descriptor()
  1576. // whatsappchannel.DefaultWaName holds the default value on creation for the wa_name field.
  1577. whatsappchannel.DefaultWaName = whatsappchannelDescWaName.Default.(string)
  1578. // whatsappchannelDescWabaID is the schema descriptor for waba_id field.
  1579. whatsappchannelDescWabaID := whatsappchannelFields[4].Descriptor()
  1580. // whatsappchannel.DefaultWabaID holds the default value on creation for the waba_id field.
  1581. whatsappchannel.DefaultWabaID = whatsappchannelDescWabaID.Default.(uint64)
  1582. // whatsappchannelDescBusinessID is the schema descriptor for business_id field.
  1583. whatsappchannelDescBusinessID := whatsappchannelFields[5].Descriptor()
  1584. // whatsappchannel.DefaultBusinessID holds the default value on creation for the business_id field.
  1585. whatsappchannel.DefaultBusinessID = whatsappchannelDescBusinessID.Default.(uint64)
  1586. // whatsappchannelDescOrganizationID is the schema descriptor for organization_id field.
  1587. whatsappchannelDescOrganizationID := whatsappchannelFields[6].Descriptor()
  1588. // whatsappchannel.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1589. whatsappchannel.DefaultOrganizationID = whatsappchannelDescOrganizationID.Default.(uint64)
  1590. // whatsappchannelDescVerifyAccount is the schema descriptor for verify_account field.
  1591. whatsappchannelDescVerifyAccount := whatsappchannelFields[7].Descriptor()
  1592. // whatsappchannel.DefaultVerifyAccount holds the default value on creation for the verify_account field.
  1593. whatsappchannel.DefaultVerifyAccount = whatsappchannelDescVerifyAccount.Default.(string)
  1594. workexperienceMixin := schema.WorkExperience{}.Mixin()
  1595. workexperienceMixinHooks1 := workexperienceMixin[1].Hooks()
  1596. workexperience.Hooks[0] = workexperienceMixinHooks1[0]
  1597. workexperienceMixinInters1 := workexperienceMixin[1].Interceptors()
  1598. workexperience.Interceptors[0] = workexperienceMixinInters1[0]
  1599. workexperienceMixinFields0 := workexperienceMixin[0].Fields()
  1600. _ = workexperienceMixinFields0
  1601. workexperienceFields := schema.WorkExperience{}.Fields()
  1602. _ = workexperienceFields
  1603. // workexperienceDescCreatedAt is the schema descriptor for created_at field.
  1604. workexperienceDescCreatedAt := workexperienceMixinFields0[1].Descriptor()
  1605. // workexperience.DefaultCreatedAt holds the default value on creation for the created_at field.
  1606. workexperience.DefaultCreatedAt = workexperienceDescCreatedAt.Default.(func() time.Time)
  1607. // workexperienceDescUpdatedAt is the schema descriptor for updated_at field.
  1608. workexperienceDescUpdatedAt := workexperienceMixinFields0[2].Descriptor()
  1609. // workexperience.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1610. workexperience.DefaultUpdatedAt = workexperienceDescUpdatedAt.Default.(func() time.Time)
  1611. // workexperience.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1612. workexperience.UpdateDefaultUpdatedAt = workexperienceDescUpdatedAt.UpdateDefault.(func() time.Time)
  1613. wpchatroomMixin := schema.WpChatroom{}.Mixin()
  1614. wpchatroomMixinFields0 := wpchatroomMixin[0].Fields()
  1615. _ = wpchatroomMixinFields0
  1616. wpchatroomMixinFields1 := wpchatroomMixin[1].Fields()
  1617. _ = wpchatroomMixinFields1
  1618. wpchatroomFields := schema.WpChatroom{}.Fields()
  1619. _ = wpchatroomFields
  1620. // wpchatroomDescCreatedAt is the schema descriptor for created_at field.
  1621. wpchatroomDescCreatedAt := wpchatroomMixinFields0[1].Descriptor()
  1622. // wpchatroom.DefaultCreatedAt holds the default value on creation for the created_at field.
  1623. wpchatroom.DefaultCreatedAt = wpchatroomDescCreatedAt.Default.(func() time.Time)
  1624. // wpchatroomDescUpdatedAt is the schema descriptor for updated_at field.
  1625. wpchatroomDescUpdatedAt := wpchatroomMixinFields0[2].Descriptor()
  1626. // wpchatroom.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1627. wpchatroom.DefaultUpdatedAt = wpchatroomDescUpdatedAt.Default.(func() time.Time)
  1628. // wpchatroom.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1629. wpchatroom.UpdateDefaultUpdatedAt = wpchatroomDescUpdatedAt.UpdateDefault.(func() time.Time)
  1630. // wpchatroomDescStatus is the schema descriptor for status field.
  1631. wpchatroomDescStatus := wpchatroomMixinFields1[0].Descriptor()
  1632. // wpchatroom.DefaultStatus holds the default value on creation for the status field.
  1633. wpchatroom.DefaultStatus = wpchatroomDescStatus.Default.(uint8)
  1634. // wpchatroomDescWxWxid is the schema descriptor for wx_wxid field.
  1635. wpchatroomDescWxWxid := wpchatroomFields[0].Descriptor()
  1636. // wpchatroom.DefaultWxWxid holds the default value on creation for the wx_wxid field.
  1637. wpchatroom.DefaultWxWxid = wpchatroomDescWxWxid.Default.(string)
  1638. // wpchatroomDescChatroomID is the schema descriptor for chatroom_id field.
  1639. wpchatroomDescChatroomID := wpchatroomFields[1].Descriptor()
  1640. // wpchatroom.DefaultChatroomID holds the default value on creation for the chatroom_id field.
  1641. wpchatroom.DefaultChatroomID = wpchatroomDescChatroomID.Default.(string)
  1642. // wpchatroomDescNickname is the schema descriptor for nickname field.
  1643. wpchatroomDescNickname := wpchatroomFields[2].Descriptor()
  1644. // wpchatroom.DefaultNickname holds the default value on creation for the nickname field.
  1645. wpchatroom.DefaultNickname = wpchatroomDescNickname.Default.(string)
  1646. // wpchatroomDescOwner is the schema descriptor for owner field.
  1647. wpchatroomDescOwner := wpchatroomFields[3].Descriptor()
  1648. // wpchatroom.DefaultOwner holds the default value on creation for the owner field.
  1649. wpchatroom.DefaultOwner = wpchatroomDescOwner.Default.(string)
  1650. // wpchatroomDescAvatar is the schema descriptor for avatar field.
  1651. wpchatroomDescAvatar := wpchatroomFields[4].Descriptor()
  1652. // wpchatroom.DefaultAvatar holds the default value on creation for the avatar field.
  1653. wpchatroom.DefaultAvatar = wpchatroomDescAvatar.Default.(string)
  1654. wpchatroommemberMixin := schema.WpChatroomMember{}.Mixin()
  1655. wpchatroommemberMixinFields0 := wpchatroommemberMixin[0].Fields()
  1656. _ = wpchatroommemberMixinFields0
  1657. wpchatroommemberMixinFields1 := wpchatroommemberMixin[1].Fields()
  1658. _ = wpchatroommemberMixinFields1
  1659. wpchatroommemberFields := schema.WpChatroomMember{}.Fields()
  1660. _ = wpchatroommemberFields
  1661. // wpchatroommemberDescCreatedAt is the schema descriptor for created_at field.
  1662. wpchatroommemberDescCreatedAt := wpchatroommemberMixinFields0[1].Descriptor()
  1663. // wpchatroommember.DefaultCreatedAt holds the default value on creation for the created_at field.
  1664. wpchatroommember.DefaultCreatedAt = wpchatroommemberDescCreatedAt.Default.(func() time.Time)
  1665. // wpchatroommemberDescUpdatedAt is the schema descriptor for updated_at field.
  1666. wpchatroommemberDescUpdatedAt := wpchatroommemberMixinFields0[2].Descriptor()
  1667. // wpchatroommember.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1668. wpchatroommember.DefaultUpdatedAt = wpchatroommemberDescUpdatedAt.Default.(func() time.Time)
  1669. // wpchatroommember.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1670. wpchatroommember.UpdateDefaultUpdatedAt = wpchatroommemberDescUpdatedAt.UpdateDefault.(func() time.Time)
  1671. // wpchatroommemberDescStatus is the schema descriptor for status field.
  1672. wpchatroommemberDescStatus := wpchatroommemberMixinFields1[0].Descriptor()
  1673. // wpchatroommember.DefaultStatus holds the default value on creation for the status field.
  1674. wpchatroommember.DefaultStatus = wpchatroommemberDescStatus.Default.(uint8)
  1675. // wpchatroommemberDescWxWxid is the schema descriptor for wx_wxid field.
  1676. wpchatroommemberDescWxWxid := wpchatroommemberFields[0].Descriptor()
  1677. // wpchatroommember.DefaultWxWxid holds the default value on creation for the wx_wxid field.
  1678. wpchatroommember.DefaultWxWxid = wpchatroommemberDescWxWxid.Default.(string)
  1679. // wpchatroommemberDescWxid is the schema descriptor for wxid field.
  1680. wpchatroommemberDescWxid := wpchatroommemberFields[1].Descriptor()
  1681. // wpchatroommember.DefaultWxid holds the default value on creation for the wxid field.
  1682. wpchatroommember.DefaultWxid = wpchatroommemberDescWxid.Default.(string)
  1683. // wpchatroommemberDescNickname is the schema descriptor for nickname field.
  1684. wpchatroommemberDescNickname := wpchatroommemberFields[2].Descriptor()
  1685. // wpchatroommember.DefaultNickname holds the default value on creation for the nickname field.
  1686. wpchatroommember.DefaultNickname = wpchatroommemberDescNickname.Default.(string)
  1687. // wpchatroommemberDescAvatar is the schema descriptor for avatar field.
  1688. wpchatroommemberDescAvatar := wpchatroommemberFields[3].Descriptor()
  1689. // wpchatroommember.DefaultAvatar holds the default value on creation for the avatar field.
  1690. wpchatroommember.DefaultAvatar = wpchatroommemberDescAvatar.Default.(string)
  1691. wxMixin := schema.Wx{}.Mixin()
  1692. wxMixinHooks2 := wxMixin[2].Hooks()
  1693. wx.Hooks[0] = wxMixinHooks2[0]
  1694. wxMixinInters2 := wxMixin[2].Interceptors()
  1695. wx.Interceptors[0] = wxMixinInters2[0]
  1696. wxMixinFields0 := wxMixin[0].Fields()
  1697. _ = wxMixinFields0
  1698. wxMixinFields1 := wxMixin[1].Fields()
  1699. _ = wxMixinFields1
  1700. wxFields := schema.Wx{}.Fields()
  1701. _ = wxFields
  1702. // wxDescCreatedAt is the schema descriptor for created_at field.
  1703. wxDescCreatedAt := wxMixinFields0[1].Descriptor()
  1704. // wx.DefaultCreatedAt holds the default value on creation for the created_at field.
  1705. wx.DefaultCreatedAt = wxDescCreatedAt.Default.(func() time.Time)
  1706. // wxDescUpdatedAt is the schema descriptor for updated_at field.
  1707. wxDescUpdatedAt := wxMixinFields0[2].Descriptor()
  1708. // wx.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1709. wx.DefaultUpdatedAt = wxDescUpdatedAt.Default.(func() time.Time)
  1710. // wx.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1711. wx.UpdateDefaultUpdatedAt = wxDescUpdatedAt.UpdateDefault.(func() time.Time)
  1712. // wxDescStatus is the schema descriptor for status field.
  1713. wxDescStatus := wxMixinFields1[0].Descriptor()
  1714. // wx.DefaultStatus holds the default value on creation for the status field.
  1715. wx.DefaultStatus = wxDescStatus.Default.(uint8)
  1716. // wxDescServerID is the schema descriptor for server_id field.
  1717. wxDescServerID := wxFields[0].Descriptor()
  1718. // wx.DefaultServerID holds the default value on creation for the server_id field.
  1719. wx.DefaultServerID = wxDescServerID.Default.(uint64)
  1720. // wxDescPort is the schema descriptor for port field.
  1721. wxDescPort := wxFields[1].Descriptor()
  1722. // wx.DefaultPort holds the default value on creation for the port field.
  1723. wx.DefaultPort = wxDescPort.Default.(string)
  1724. // wxDescProcessID is the schema descriptor for process_id field.
  1725. wxDescProcessID := wxFields[2].Descriptor()
  1726. // wx.DefaultProcessID holds the default value on creation for the process_id field.
  1727. wx.DefaultProcessID = wxDescProcessID.Default.(string)
  1728. // wxDescCallback is the schema descriptor for callback field.
  1729. wxDescCallback := wxFields[3].Descriptor()
  1730. // wx.DefaultCallback holds the default value on creation for the callback field.
  1731. wx.DefaultCallback = wxDescCallback.Default.(string)
  1732. // wxDescWxid is the schema descriptor for wxid field.
  1733. wxDescWxid := wxFields[4].Descriptor()
  1734. // wx.DefaultWxid holds the default value on creation for the wxid field.
  1735. wx.DefaultWxid = wxDescWxid.Default.(string)
  1736. // wxDescAccount is the schema descriptor for account field.
  1737. wxDescAccount := wxFields[5].Descriptor()
  1738. // wx.DefaultAccount holds the default value on creation for the account field.
  1739. wx.DefaultAccount = wxDescAccount.Default.(string)
  1740. // wxDescNickname is the schema descriptor for nickname field.
  1741. wxDescNickname := wxFields[6].Descriptor()
  1742. // wx.DefaultNickname holds the default value on creation for the nickname field.
  1743. wx.DefaultNickname = wxDescNickname.Default.(string)
  1744. // wxDescTel is the schema descriptor for tel field.
  1745. wxDescTel := wxFields[7].Descriptor()
  1746. // wx.DefaultTel holds the default value on creation for the tel field.
  1747. wx.DefaultTel = wxDescTel.Default.(string)
  1748. // wxDescHeadBig is the schema descriptor for head_big field.
  1749. wxDescHeadBig := wxFields[8].Descriptor()
  1750. // wx.DefaultHeadBig holds the default value on creation for the head_big field.
  1751. wx.DefaultHeadBig = wxDescHeadBig.Default.(string)
  1752. // wxDescOrganizationID is the schema descriptor for organization_id field.
  1753. wxDescOrganizationID := wxFields[9].Descriptor()
  1754. // wx.DefaultOrganizationID holds the default value on creation for the organization_id field.
  1755. wx.DefaultOrganizationID = wxDescOrganizationID.Default.(uint64)
  1756. // wxDescAgentID is the schema descriptor for agent_id field.
  1757. wxDescAgentID := wxFields[10].Descriptor()
  1758. // wx.DefaultAgentID holds the default value on creation for the agent_id field.
  1759. wx.DefaultAgentID = wxDescAgentID.Default.(uint64)
  1760. // wxDescAPIBase is the schema descriptor for api_base field.
  1761. wxDescAPIBase := wxFields[11].Descriptor()
  1762. // wx.DefaultAPIBase holds the default value on creation for the api_base field.
  1763. wx.DefaultAPIBase = wxDescAPIBase.Default.(string)
  1764. // wxDescAPIKey is the schema descriptor for api_key field.
  1765. wxDescAPIKey := wxFields[12].Descriptor()
  1766. // wx.DefaultAPIKey holds the default value on creation for the api_key field.
  1767. wx.DefaultAPIKey = wxDescAPIKey.Default.(string)
  1768. // wxDescCtype is the schema descriptor for ctype field.
  1769. wxDescCtype := wxFields[17].Descriptor()
  1770. // wx.DefaultCtype holds the default value on creation for the ctype field.
  1771. wx.DefaultCtype = wxDescCtype.Default.(uint64)
  1772. wxcardMixin := schema.WxCard{}.Mixin()
  1773. wxcardMixinHooks1 := wxcardMixin[1].Hooks()
  1774. wxcard.Hooks[0] = wxcardMixinHooks1[0]
  1775. wxcardMixinInters1 := wxcardMixin[1].Interceptors()
  1776. wxcard.Interceptors[0] = wxcardMixinInters1[0]
  1777. wxcardMixinFields0 := wxcardMixin[0].Fields()
  1778. _ = wxcardMixinFields0
  1779. wxcardFields := schema.WxCard{}.Fields()
  1780. _ = wxcardFields
  1781. // wxcardDescCreatedAt is the schema descriptor for created_at field.
  1782. wxcardDescCreatedAt := wxcardMixinFields0[1].Descriptor()
  1783. // wxcard.DefaultCreatedAt holds the default value on creation for the created_at field.
  1784. wxcard.DefaultCreatedAt = wxcardDescCreatedAt.Default.(func() time.Time)
  1785. // wxcardDescUpdatedAt is the schema descriptor for updated_at field.
  1786. wxcardDescUpdatedAt := wxcardMixinFields0[2].Descriptor()
  1787. // wxcard.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1788. wxcard.DefaultUpdatedAt = wxcardDescUpdatedAt.Default.(func() time.Time)
  1789. // wxcard.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1790. wxcard.UpdateDefaultUpdatedAt = wxcardDescUpdatedAt.UpdateDefault.(func() time.Time)
  1791. // wxcardDescUserID is the schema descriptor for user_id field.
  1792. wxcardDescUserID := wxcardFields[0].Descriptor()
  1793. // wxcard.DefaultUserID holds the default value on creation for the user_id field.
  1794. wxcard.DefaultUserID = wxcardDescUserID.Default.(uint64)
  1795. // wxcardDescWxUserID is the schema descriptor for wx_user_id field.
  1796. wxcardDescWxUserID := wxcardFields[1].Descriptor()
  1797. // wxcard.DefaultWxUserID holds the default value on creation for the wx_user_id field.
  1798. wxcard.DefaultWxUserID = wxcardDescWxUserID.Default.(uint64)
  1799. // wxcardDescAvatar is the schema descriptor for avatar field.
  1800. wxcardDescAvatar := wxcardFields[2].Descriptor()
  1801. // wxcard.DefaultAvatar holds the default value on creation for the avatar field.
  1802. wxcard.DefaultAvatar = wxcardDescAvatar.Default.(string)
  1803. // wxcardDescLogo is the schema descriptor for logo field.
  1804. wxcardDescLogo := wxcardFields[3].Descriptor()
  1805. // wxcard.DefaultLogo holds the default value on creation for the logo field.
  1806. wxcard.DefaultLogo = wxcardDescLogo.Default.(string)
  1807. // wxcardDescName is the schema descriptor for name field.
  1808. wxcardDescName := wxcardFields[4].Descriptor()
  1809. // wxcard.DefaultName holds the default value on creation for the name field.
  1810. wxcard.DefaultName = wxcardDescName.Default.(string)
  1811. // wxcardDescCompany is the schema descriptor for company field.
  1812. wxcardDescCompany := wxcardFields[5].Descriptor()
  1813. // wxcard.DefaultCompany holds the default value on creation for the company field.
  1814. wxcard.DefaultCompany = wxcardDescCompany.Default.(string)
  1815. // wxcardDescAddress is the schema descriptor for address field.
  1816. wxcardDescAddress := wxcardFields[6].Descriptor()
  1817. // wxcard.DefaultAddress holds the default value on creation for the address field.
  1818. wxcard.DefaultAddress = wxcardDescAddress.Default.(string)
  1819. // wxcardDescPhone is the schema descriptor for phone field.
  1820. wxcardDescPhone := wxcardFields[7].Descriptor()
  1821. // wxcard.DefaultPhone holds the default value on creation for the phone field.
  1822. wxcard.DefaultPhone = wxcardDescPhone.Default.(string)
  1823. // wxcardDescOfficialAccount is the schema descriptor for official_account field.
  1824. wxcardDescOfficialAccount := wxcardFields[8].Descriptor()
  1825. // wxcard.DefaultOfficialAccount holds the default value on creation for the official_account field.
  1826. wxcard.DefaultOfficialAccount = wxcardDescOfficialAccount.Default.(string)
  1827. // wxcardDescWechatAccount is the schema descriptor for wechat_account field.
  1828. wxcardDescWechatAccount := wxcardFields[9].Descriptor()
  1829. // wxcard.DefaultWechatAccount holds the default value on creation for the wechat_account field.
  1830. wxcard.DefaultWechatAccount = wxcardDescWechatAccount.Default.(string)
  1831. // wxcardDescEmail is the schema descriptor for email field.
  1832. wxcardDescEmail := wxcardFields[10].Descriptor()
  1833. // wxcard.DefaultEmail holds the default value on creation for the email field.
  1834. wxcard.DefaultEmail = wxcardDescEmail.Default.(string)
  1835. // wxcardDescIntro is the schema descriptor for intro field.
  1836. wxcardDescIntro := wxcardFields[14].Descriptor()
  1837. // wxcard.DefaultIntro holds the default value on creation for the intro field.
  1838. wxcard.DefaultIntro = wxcardDescIntro.Default.(string)
  1839. wxcarduserMixin := schema.WxCardUser{}.Mixin()
  1840. wxcarduserMixinHooks1 := wxcarduserMixin[1].Hooks()
  1841. wxcarduser.Hooks[0] = wxcarduserMixinHooks1[0]
  1842. wxcarduserMixinInters1 := wxcarduserMixin[1].Interceptors()
  1843. wxcarduser.Interceptors[0] = wxcarduserMixinInters1[0]
  1844. wxcarduserMixinFields0 := wxcarduserMixin[0].Fields()
  1845. _ = wxcarduserMixinFields0
  1846. wxcarduserFields := schema.WxCardUser{}.Fields()
  1847. _ = wxcarduserFields
  1848. // wxcarduserDescCreatedAt is the schema descriptor for created_at field.
  1849. wxcarduserDescCreatedAt := wxcarduserMixinFields0[1].Descriptor()
  1850. // wxcarduser.DefaultCreatedAt holds the default value on creation for the created_at field.
  1851. wxcarduser.DefaultCreatedAt = wxcarduserDescCreatedAt.Default.(func() time.Time)
  1852. // wxcarduserDescUpdatedAt is the schema descriptor for updated_at field.
  1853. wxcarduserDescUpdatedAt := wxcarduserMixinFields0[2].Descriptor()
  1854. // wxcarduser.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1855. wxcarduser.DefaultUpdatedAt = wxcarduserDescUpdatedAt.Default.(func() time.Time)
  1856. // wxcarduser.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1857. wxcarduser.UpdateDefaultUpdatedAt = wxcarduserDescUpdatedAt.UpdateDefault.(func() time.Time)
  1858. // wxcarduserDescWxid is the schema descriptor for wxid field.
  1859. wxcarduserDescWxid := wxcarduserFields[0].Descriptor()
  1860. // wxcarduser.DefaultWxid holds the default value on creation for the wxid field.
  1861. wxcarduser.DefaultWxid = wxcarduserDescWxid.Default.(string)
  1862. // wxcarduserDescAccount is the schema descriptor for account field.
  1863. wxcarduserDescAccount := wxcarduserFields[1].Descriptor()
  1864. // wxcarduser.DefaultAccount holds the default value on creation for the account field.
  1865. wxcarduser.DefaultAccount = wxcarduserDescAccount.Default.(string)
  1866. // wxcarduserDescAvatar is the schema descriptor for avatar field.
  1867. wxcarduserDescAvatar := wxcarduserFields[2].Descriptor()
  1868. // wxcarduser.DefaultAvatar holds the default value on creation for the avatar field.
  1869. wxcarduser.DefaultAvatar = wxcarduserDescAvatar.Default.(string)
  1870. // wxcarduserDescNickname is the schema descriptor for nickname field.
  1871. wxcarduserDescNickname := wxcarduserFields[3].Descriptor()
  1872. // wxcarduser.DefaultNickname holds the default value on creation for the nickname field.
  1873. wxcarduser.DefaultNickname = wxcarduserDescNickname.Default.(string)
  1874. // wxcarduserDescRemark is the schema descriptor for remark field.
  1875. wxcarduserDescRemark := wxcarduserFields[4].Descriptor()
  1876. // wxcarduser.DefaultRemark holds the default value on creation for the remark field.
  1877. wxcarduser.DefaultRemark = wxcarduserDescRemark.Default.(string)
  1878. // wxcarduserDescPhone is the schema descriptor for phone field.
  1879. wxcarduserDescPhone := wxcarduserFields[5].Descriptor()
  1880. // wxcarduser.DefaultPhone holds the default value on creation for the phone field.
  1881. wxcarduser.DefaultPhone = wxcarduserDescPhone.Default.(string)
  1882. // wxcarduserDescOpenID is the schema descriptor for open_id field.
  1883. wxcarduserDescOpenID := wxcarduserFields[6].Descriptor()
  1884. // wxcarduser.DefaultOpenID holds the default value on creation for the open_id field.
  1885. wxcarduser.DefaultOpenID = wxcarduserDescOpenID.Default.(string)
  1886. // wxcarduserDescUnionID is the schema descriptor for union_id field.
  1887. wxcarduserDescUnionID := wxcarduserFields[7].Descriptor()
  1888. // wxcarduser.DefaultUnionID holds the default value on creation for the union_id field.
  1889. wxcarduser.DefaultUnionID = wxcarduserDescUnionID.Default.(string)
  1890. // wxcarduserDescSessionKey is the schema descriptor for session_key field.
  1891. wxcarduserDescSessionKey := wxcarduserFields[8].Descriptor()
  1892. // wxcarduser.DefaultSessionKey holds the default value on creation for the session_key field.
  1893. wxcarduser.DefaultSessionKey = wxcarduserDescSessionKey.Default.(string)
  1894. // wxcarduserDescIsVip is the schema descriptor for is_vip field.
  1895. wxcarduserDescIsVip := wxcarduserFields[9].Descriptor()
  1896. // wxcarduser.DefaultIsVip holds the default value on creation for the is_vip field.
  1897. wxcarduser.DefaultIsVip = wxcarduserDescIsVip.Default.(int)
  1898. wxcardvisitMixin := schema.WxCardVisit{}.Mixin()
  1899. wxcardvisitMixinHooks1 := wxcardvisitMixin[1].Hooks()
  1900. wxcardvisit.Hooks[0] = wxcardvisitMixinHooks1[0]
  1901. wxcardvisitMixinInters1 := wxcardvisitMixin[1].Interceptors()
  1902. wxcardvisit.Interceptors[0] = wxcardvisitMixinInters1[0]
  1903. wxcardvisitMixinFields0 := wxcardvisitMixin[0].Fields()
  1904. _ = wxcardvisitMixinFields0
  1905. wxcardvisitFields := schema.WxCardVisit{}.Fields()
  1906. _ = wxcardvisitFields
  1907. // wxcardvisitDescCreatedAt is the schema descriptor for created_at field.
  1908. wxcardvisitDescCreatedAt := wxcardvisitMixinFields0[1].Descriptor()
  1909. // wxcardvisit.DefaultCreatedAt holds the default value on creation for the created_at field.
  1910. wxcardvisit.DefaultCreatedAt = wxcardvisitDescCreatedAt.Default.(func() time.Time)
  1911. // wxcardvisitDescUpdatedAt is the schema descriptor for updated_at field.
  1912. wxcardvisitDescUpdatedAt := wxcardvisitMixinFields0[2].Descriptor()
  1913. // wxcardvisit.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1914. wxcardvisit.DefaultUpdatedAt = wxcardvisitDescUpdatedAt.Default.(func() time.Time)
  1915. // wxcardvisit.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1916. wxcardvisit.UpdateDefaultUpdatedAt = wxcardvisitDescUpdatedAt.UpdateDefault.(func() time.Time)
  1917. // wxcardvisitDescUserID is the schema descriptor for user_id field.
  1918. wxcardvisitDescUserID := wxcardvisitFields[0].Descriptor()
  1919. // wxcardvisit.DefaultUserID holds the default value on creation for the user_id field.
  1920. wxcardvisit.DefaultUserID = wxcardvisitDescUserID.Default.(uint64)
  1921. // wxcardvisitDescBotID is the schema descriptor for bot_id field.
  1922. wxcardvisitDescBotID := wxcardvisitFields[1].Descriptor()
  1923. // wxcardvisit.DefaultBotID holds the default value on creation for the bot_id field.
  1924. wxcardvisit.DefaultBotID = wxcardvisitDescBotID.Default.(uint64)
  1925. // wxcardvisitDescBotType is the schema descriptor for bot_type field.
  1926. wxcardvisitDescBotType := wxcardvisitFields[2].Descriptor()
  1927. // wxcardvisit.DefaultBotType holds the default value on creation for the bot_type field.
  1928. wxcardvisit.DefaultBotType = wxcardvisitDescBotType.Default.(uint8)
  1929. xunjiMixin := schema.Xunji{}.Mixin()
  1930. xunjiMixinHooks2 := xunjiMixin[2].Hooks()
  1931. xunji.Hooks[0] = xunjiMixinHooks2[0]
  1932. xunjiMixinInters2 := xunjiMixin[2].Interceptors()
  1933. xunji.Interceptors[0] = xunjiMixinInters2[0]
  1934. xunjiMixinFields0 := xunjiMixin[0].Fields()
  1935. _ = xunjiMixinFields0
  1936. xunjiMixinFields1 := xunjiMixin[1].Fields()
  1937. _ = xunjiMixinFields1
  1938. xunjiFields := schema.Xunji{}.Fields()
  1939. _ = xunjiFields
  1940. // xunjiDescCreatedAt is the schema descriptor for created_at field.
  1941. xunjiDescCreatedAt := xunjiMixinFields0[1].Descriptor()
  1942. // xunji.DefaultCreatedAt holds the default value on creation for the created_at field.
  1943. xunji.DefaultCreatedAt = xunjiDescCreatedAt.Default.(func() time.Time)
  1944. // xunjiDescUpdatedAt is the schema descriptor for updated_at field.
  1945. xunjiDescUpdatedAt := xunjiMixinFields0[2].Descriptor()
  1946. // xunji.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1947. xunji.DefaultUpdatedAt = xunjiDescUpdatedAt.Default.(func() time.Time)
  1948. // xunji.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1949. xunji.UpdateDefaultUpdatedAt = xunjiDescUpdatedAt.UpdateDefault.(func() time.Time)
  1950. // xunjiDescStatus is the schema descriptor for status field.
  1951. xunjiDescStatus := xunjiMixinFields1[0].Descriptor()
  1952. // xunji.DefaultStatus holds the default value on creation for the status field.
  1953. xunji.DefaultStatus = xunjiDescStatus.Default.(uint8)
  1954. // xunjiDescOrganizationID is the schema descriptor for organization_id field.
  1955. xunjiDescOrganizationID := xunjiFields[4].Descriptor()
  1956. // xunji.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  1957. xunji.OrganizationIDValidator = xunjiDescOrganizationID.Validators[0].(func(uint64) error)
  1958. xunjiserviceMixin := schema.XunjiService{}.Mixin()
  1959. xunjiserviceMixinHooks2 := xunjiserviceMixin[2].Hooks()
  1960. xunjiservice.Hooks[0] = xunjiserviceMixinHooks2[0]
  1961. xunjiserviceMixinInters2 := xunjiserviceMixin[2].Interceptors()
  1962. xunjiservice.Interceptors[0] = xunjiserviceMixinInters2[0]
  1963. xunjiserviceMixinFields0 := xunjiserviceMixin[0].Fields()
  1964. _ = xunjiserviceMixinFields0
  1965. xunjiserviceMixinFields1 := xunjiserviceMixin[1].Fields()
  1966. _ = xunjiserviceMixinFields1
  1967. xunjiserviceFields := schema.XunjiService{}.Fields()
  1968. _ = xunjiserviceFields
  1969. // xunjiserviceDescCreatedAt is the schema descriptor for created_at field.
  1970. xunjiserviceDescCreatedAt := xunjiserviceMixinFields0[1].Descriptor()
  1971. // xunjiservice.DefaultCreatedAt holds the default value on creation for the created_at field.
  1972. xunjiservice.DefaultCreatedAt = xunjiserviceDescCreatedAt.Default.(func() time.Time)
  1973. // xunjiserviceDescUpdatedAt is the schema descriptor for updated_at field.
  1974. xunjiserviceDescUpdatedAt := xunjiserviceMixinFields0[2].Descriptor()
  1975. // xunjiservice.DefaultUpdatedAt holds the default value on creation for the updated_at field.
  1976. xunjiservice.DefaultUpdatedAt = xunjiserviceDescUpdatedAt.Default.(func() time.Time)
  1977. // xunjiservice.UpdateDefaultUpdatedAt holds the default value on update for the updated_at field.
  1978. xunjiservice.UpdateDefaultUpdatedAt = xunjiserviceDescUpdatedAt.UpdateDefault.(func() time.Time)
  1979. // xunjiserviceDescStatus is the schema descriptor for status field.
  1980. xunjiserviceDescStatus := xunjiserviceMixinFields1[0].Descriptor()
  1981. // xunjiservice.DefaultStatus holds the default value on creation for the status field.
  1982. xunjiservice.DefaultStatus = xunjiserviceDescStatus.Default.(uint8)
  1983. // xunjiserviceDescAgentID is the schema descriptor for agent_id field.
  1984. xunjiserviceDescAgentID := xunjiserviceFields[1].Descriptor()
  1985. // xunjiservice.DefaultAgentID holds the default value on creation for the agent_id field.
  1986. xunjiservice.DefaultAgentID = xunjiserviceDescAgentID.Default.(uint64)
  1987. // xunjiserviceDescOrganizationID is the schema descriptor for organization_id field.
  1988. xunjiserviceDescOrganizationID := xunjiserviceFields[2].Descriptor()
  1989. // xunjiservice.OrganizationIDValidator is a validator for the "organization_id" field. It is called by the builders before save.
  1990. xunjiservice.OrganizationIDValidator = xunjiserviceDescOrganizationID.Validators[0].(func(uint64) error)
  1991. // xunjiserviceDescAPIBase is the schema descriptor for api_base field.
  1992. xunjiserviceDescAPIBase := xunjiserviceFields[4].Descriptor()
  1993. // xunjiservice.DefaultAPIBase holds the default value on creation for the api_base field.
  1994. xunjiservice.DefaultAPIBase = xunjiserviceDescAPIBase.Default.(string)
  1995. // xunjiserviceDescAPIKey is the schema descriptor for api_key field.
  1996. xunjiserviceDescAPIKey := xunjiserviceFields[5].Descriptor()
  1997. // xunjiservice.DefaultAPIKey holds the default value on creation for the api_key field.
  1998. xunjiservice.DefaultAPIKey = xunjiserviceDescAPIKey.Default.(string)
  1999. }
  2000. const (
  2001. Version = "v0.13.1" // Version of ent codegen.
  2002. Sum = "h1:uD8QwN1h6SNphdCCzmkMN3feSUzNnVvV/WIkHKMbzOE=" // Sum of ent codegen.
  2003. )