client.go 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "log"
  8. "reflect"
  9. "wechat-api/ent/migrate"
  10. "wechat-api/ent/agent"
  11. "wechat-api/ent/agentbase"
  12. "wechat-api/ent/aliyunavatar"
  13. "wechat-api/ent/batchmsg"
  14. "wechat-api/ent/category"
  15. "wechat-api/ent/chatrecords"
  16. "wechat-api/ent/chatsession"
  17. "wechat-api/ent/contact"
  18. "wechat-api/ent/employee"
  19. "wechat-api/ent/employeeconfig"
  20. "wechat-api/ent/label"
  21. "wechat-api/ent/labelrelationship"
  22. "wechat-api/ent/message"
  23. "wechat-api/ent/messagerecords"
  24. "wechat-api/ent/msg"
  25. "wechat-api/ent/server"
  26. "wechat-api/ent/sopnode"
  27. "wechat-api/ent/sopstage"
  28. "wechat-api/ent/soptask"
  29. "wechat-api/ent/token"
  30. "wechat-api/ent/tutorial"
  31. "wechat-api/ent/workexperience"
  32. "wechat-api/ent/wx"
  33. "wechat-api/ent/wxcard"
  34. "wechat-api/ent/wxcarduser"
  35. "wechat-api/ent/wxcardvisit"
  36. "entgo.io/ent"
  37. "entgo.io/ent/dialect"
  38. "entgo.io/ent/dialect/sql"
  39. "entgo.io/ent/dialect/sql/sqlgraph"
  40. stdsql "database/sql"
  41. )
  42. // Client is the client that holds all ent builders.
  43. type Client struct {
  44. config
  45. // Schema is the client for creating, migrating and dropping schema.
  46. Schema *migrate.Schema
  47. // Agent is the client for interacting with the Agent builders.
  48. Agent *AgentClient
  49. // AgentBase is the client for interacting with the AgentBase builders.
  50. AgentBase *AgentBaseClient
  51. // AliyunAvatar is the client for interacting with the AliyunAvatar builders.
  52. AliyunAvatar *AliyunAvatarClient
  53. // BatchMsg is the client for interacting with the BatchMsg builders.
  54. BatchMsg *BatchMsgClient
  55. // Category is the client for interacting with the Category builders.
  56. Category *CategoryClient
  57. // ChatRecords is the client for interacting with the ChatRecords builders.
  58. ChatRecords *ChatRecordsClient
  59. // ChatSession is the client for interacting with the ChatSession builders.
  60. ChatSession *ChatSessionClient
  61. // Contact is the client for interacting with the Contact builders.
  62. Contact *ContactClient
  63. // Employee is the client for interacting with the Employee builders.
  64. Employee *EmployeeClient
  65. // EmployeeConfig is the client for interacting with the EmployeeConfig builders.
  66. EmployeeConfig *EmployeeConfigClient
  67. // Label is the client for interacting with the Label builders.
  68. Label *LabelClient
  69. // LabelRelationship is the client for interacting with the LabelRelationship builders.
  70. LabelRelationship *LabelRelationshipClient
  71. // Message is the client for interacting with the Message builders.
  72. Message *MessageClient
  73. // MessageRecords is the client for interacting with the MessageRecords builders.
  74. MessageRecords *MessageRecordsClient
  75. // Msg is the client for interacting with the Msg builders.
  76. Msg *MsgClient
  77. // Server is the client for interacting with the Server builders.
  78. Server *ServerClient
  79. // SopNode is the client for interacting with the SopNode builders.
  80. SopNode *SopNodeClient
  81. // SopStage is the client for interacting with the SopStage builders.
  82. SopStage *SopStageClient
  83. // SopTask is the client for interacting with the SopTask builders.
  84. SopTask *SopTaskClient
  85. // Token is the client for interacting with the Token builders.
  86. Token *TokenClient
  87. // Tutorial is the client for interacting with the Tutorial builders.
  88. Tutorial *TutorialClient
  89. // WorkExperience is the client for interacting with the WorkExperience builders.
  90. WorkExperience *WorkExperienceClient
  91. // Wx is the client for interacting with the Wx builders.
  92. Wx *WxClient
  93. // WxCard is the client for interacting with the WxCard builders.
  94. WxCard *WxCardClient
  95. // WxCardUser is the client for interacting with the WxCardUser builders.
  96. WxCardUser *WxCardUserClient
  97. // WxCardVisit is the client for interacting with the WxCardVisit builders.
  98. WxCardVisit *WxCardVisitClient
  99. }
  100. // NewClient creates a new client configured with the given options.
  101. func NewClient(opts ...Option) *Client {
  102. client := &Client{config: newConfig(opts...)}
  103. client.init()
  104. return client
  105. }
  106. func (c *Client) init() {
  107. c.Schema = migrate.NewSchema(c.driver)
  108. c.Agent = NewAgentClient(c.config)
  109. c.AgentBase = NewAgentBaseClient(c.config)
  110. c.AliyunAvatar = NewAliyunAvatarClient(c.config)
  111. c.BatchMsg = NewBatchMsgClient(c.config)
  112. c.Category = NewCategoryClient(c.config)
  113. c.ChatRecords = NewChatRecordsClient(c.config)
  114. c.ChatSession = NewChatSessionClient(c.config)
  115. c.Contact = NewContactClient(c.config)
  116. c.Employee = NewEmployeeClient(c.config)
  117. c.EmployeeConfig = NewEmployeeConfigClient(c.config)
  118. c.Label = NewLabelClient(c.config)
  119. c.LabelRelationship = NewLabelRelationshipClient(c.config)
  120. c.Message = NewMessageClient(c.config)
  121. c.MessageRecords = NewMessageRecordsClient(c.config)
  122. c.Msg = NewMsgClient(c.config)
  123. c.Server = NewServerClient(c.config)
  124. c.SopNode = NewSopNodeClient(c.config)
  125. c.SopStage = NewSopStageClient(c.config)
  126. c.SopTask = NewSopTaskClient(c.config)
  127. c.Token = NewTokenClient(c.config)
  128. c.Tutorial = NewTutorialClient(c.config)
  129. c.WorkExperience = NewWorkExperienceClient(c.config)
  130. c.Wx = NewWxClient(c.config)
  131. c.WxCard = NewWxCardClient(c.config)
  132. c.WxCardUser = NewWxCardUserClient(c.config)
  133. c.WxCardVisit = NewWxCardVisitClient(c.config)
  134. }
  135. type (
  136. // config is the configuration for the client and its builder.
  137. config struct {
  138. // driver used for executing database requests.
  139. driver dialect.Driver
  140. // debug enable a debug logging.
  141. debug bool
  142. // log used for logging on debug mode.
  143. log func(...any)
  144. // hooks to execute on mutations.
  145. hooks *hooks
  146. // interceptors to execute on queries.
  147. inters *inters
  148. }
  149. // Option function to configure the client.
  150. Option func(*config)
  151. )
  152. // newConfig creates a new config for the client.
  153. func newConfig(opts ...Option) config {
  154. cfg := config{log: log.Println, hooks: &hooks{}, inters: &inters{}}
  155. cfg.options(opts...)
  156. return cfg
  157. }
  158. // options applies the options on the config object.
  159. func (c *config) options(opts ...Option) {
  160. for _, opt := range opts {
  161. opt(c)
  162. }
  163. if c.debug {
  164. c.driver = dialect.Debug(c.driver, c.log)
  165. }
  166. }
  167. // Debug enables debug logging on the ent.Driver.
  168. func Debug() Option {
  169. return func(c *config) {
  170. c.debug = true
  171. }
  172. }
  173. // Log sets the logging function for debug mode.
  174. func Log(fn func(...any)) Option {
  175. return func(c *config) {
  176. c.log = fn
  177. }
  178. }
  179. // Driver configures the client driver.
  180. func Driver(driver dialect.Driver) Option {
  181. return func(c *config) {
  182. c.driver = driver
  183. }
  184. }
  185. // Open opens a database/sql.DB specified by the driver name and
  186. // the data source name, and returns a new client attached to it.
  187. // Optional parameters can be added for configuring the client.
  188. func Open(driverName, dataSourceName string, options ...Option) (*Client, error) {
  189. switch driverName {
  190. case dialect.MySQL, dialect.Postgres, dialect.SQLite:
  191. drv, err := sql.Open(driverName, dataSourceName)
  192. if err != nil {
  193. return nil, err
  194. }
  195. return NewClient(append(options, Driver(drv))...), nil
  196. default:
  197. return nil, fmt.Errorf("unsupported driver: %q", driverName)
  198. }
  199. }
  200. // ErrTxStarted is returned when trying to start a new transaction from a transactional client.
  201. var ErrTxStarted = errors.New("ent: cannot start a transaction within a transaction")
  202. // Tx returns a new transactional client. The provided context
  203. // is used until the transaction is committed or rolled back.
  204. func (c *Client) Tx(ctx context.Context) (*Tx, error) {
  205. if _, ok := c.driver.(*txDriver); ok {
  206. return nil, ErrTxStarted
  207. }
  208. tx, err := newTx(ctx, c.driver)
  209. if err != nil {
  210. return nil, fmt.Errorf("ent: starting a transaction: %w", err)
  211. }
  212. cfg := c.config
  213. cfg.driver = tx
  214. return &Tx{
  215. ctx: ctx,
  216. config: cfg,
  217. Agent: NewAgentClient(cfg),
  218. AgentBase: NewAgentBaseClient(cfg),
  219. AliyunAvatar: NewAliyunAvatarClient(cfg),
  220. BatchMsg: NewBatchMsgClient(cfg),
  221. Category: NewCategoryClient(cfg),
  222. ChatRecords: NewChatRecordsClient(cfg),
  223. ChatSession: NewChatSessionClient(cfg),
  224. Contact: NewContactClient(cfg),
  225. Employee: NewEmployeeClient(cfg),
  226. EmployeeConfig: NewEmployeeConfigClient(cfg),
  227. Label: NewLabelClient(cfg),
  228. LabelRelationship: NewLabelRelationshipClient(cfg),
  229. Message: NewMessageClient(cfg),
  230. MessageRecords: NewMessageRecordsClient(cfg),
  231. Msg: NewMsgClient(cfg),
  232. Server: NewServerClient(cfg),
  233. SopNode: NewSopNodeClient(cfg),
  234. SopStage: NewSopStageClient(cfg),
  235. SopTask: NewSopTaskClient(cfg),
  236. Token: NewTokenClient(cfg),
  237. Tutorial: NewTutorialClient(cfg),
  238. WorkExperience: NewWorkExperienceClient(cfg),
  239. Wx: NewWxClient(cfg),
  240. WxCard: NewWxCardClient(cfg),
  241. WxCardUser: NewWxCardUserClient(cfg),
  242. WxCardVisit: NewWxCardVisitClient(cfg),
  243. }, nil
  244. }
  245. // BeginTx returns a transactional client with specified options.
  246. func (c *Client) BeginTx(ctx context.Context, opts *sql.TxOptions) (*Tx, error) {
  247. if _, ok := c.driver.(*txDriver); ok {
  248. return nil, errors.New("ent: cannot start a transaction within a transaction")
  249. }
  250. tx, err := c.driver.(interface {
  251. BeginTx(context.Context, *sql.TxOptions) (dialect.Tx, error)
  252. }).BeginTx(ctx, opts)
  253. if err != nil {
  254. return nil, fmt.Errorf("ent: starting a transaction: %w", err)
  255. }
  256. cfg := c.config
  257. cfg.driver = &txDriver{tx: tx, drv: c.driver}
  258. return &Tx{
  259. ctx: ctx,
  260. config: cfg,
  261. Agent: NewAgentClient(cfg),
  262. AgentBase: NewAgentBaseClient(cfg),
  263. AliyunAvatar: NewAliyunAvatarClient(cfg),
  264. BatchMsg: NewBatchMsgClient(cfg),
  265. Category: NewCategoryClient(cfg),
  266. ChatRecords: NewChatRecordsClient(cfg),
  267. ChatSession: NewChatSessionClient(cfg),
  268. Contact: NewContactClient(cfg),
  269. Employee: NewEmployeeClient(cfg),
  270. EmployeeConfig: NewEmployeeConfigClient(cfg),
  271. Label: NewLabelClient(cfg),
  272. LabelRelationship: NewLabelRelationshipClient(cfg),
  273. Message: NewMessageClient(cfg),
  274. MessageRecords: NewMessageRecordsClient(cfg),
  275. Msg: NewMsgClient(cfg),
  276. Server: NewServerClient(cfg),
  277. SopNode: NewSopNodeClient(cfg),
  278. SopStage: NewSopStageClient(cfg),
  279. SopTask: NewSopTaskClient(cfg),
  280. Token: NewTokenClient(cfg),
  281. Tutorial: NewTutorialClient(cfg),
  282. WorkExperience: NewWorkExperienceClient(cfg),
  283. Wx: NewWxClient(cfg),
  284. WxCard: NewWxCardClient(cfg),
  285. WxCardUser: NewWxCardUserClient(cfg),
  286. WxCardVisit: NewWxCardVisitClient(cfg),
  287. }, nil
  288. }
  289. // Debug returns a new debug-client. It's used to get verbose logging on specific operations.
  290. //
  291. // client.Debug().
  292. // Agent.
  293. // Query().
  294. // Count(ctx)
  295. func (c *Client) Debug() *Client {
  296. if c.debug {
  297. return c
  298. }
  299. cfg := c.config
  300. cfg.driver = dialect.Debug(c.driver, c.log)
  301. client := &Client{config: cfg}
  302. client.init()
  303. return client
  304. }
  305. // Close closes the database connection and prevents new queries from starting.
  306. func (c *Client) Close() error {
  307. return c.driver.Close()
  308. }
  309. // Use adds the mutation hooks to all the entity clients.
  310. // In order to add hooks to a specific client, call: `client.Node.Use(...)`.
  311. func (c *Client) Use(hooks ...Hook) {
  312. for _, n := range []interface{ Use(...Hook) }{
  313. c.Agent, c.AgentBase, c.AliyunAvatar, c.BatchMsg, c.Category, c.ChatRecords,
  314. c.ChatSession, c.Contact, c.Employee, c.EmployeeConfig, c.Label,
  315. c.LabelRelationship, c.Message, c.MessageRecords, c.Msg, c.Server, c.SopNode,
  316. c.SopStage, c.SopTask, c.Token, c.Tutorial, c.WorkExperience, c.Wx, c.WxCard,
  317. c.WxCardUser, c.WxCardVisit,
  318. } {
  319. n.Use(hooks...)
  320. }
  321. }
  322. // Intercept adds the query interceptors to all the entity clients.
  323. // In order to add interceptors to a specific client, call: `client.Node.Intercept(...)`.
  324. func (c *Client) Intercept(interceptors ...Interceptor) {
  325. for _, n := range []interface{ Intercept(...Interceptor) }{
  326. c.Agent, c.AgentBase, c.AliyunAvatar, c.BatchMsg, c.Category, c.ChatRecords,
  327. c.ChatSession, c.Contact, c.Employee, c.EmployeeConfig, c.Label,
  328. c.LabelRelationship, c.Message, c.MessageRecords, c.Msg, c.Server, c.SopNode,
  329. c.SopStage, c.SopTask, c.Token, c.Tutorial, c.WorkExperience, c.Wx, c.WxCard,
  330. c.WxCardUser, c.WxCardVisit,
  331. } {
  332. n.Intercept(interceptors...)
  333. }
  334. }
  335. // Mutate implements the ent.Mutator interface.
  336. func (c *Client) Mutate(ctx context.Context, m Mutation) (Value, error) {
  337. switch m := m.(type) {
  338. case *AgentMutation:
  339. return c.Agent.mutate(ctx, m)
  340. case *AgentBaseMutation:
  341. return c.AgentBase.mutate(ctx, m)
  342. case *AliyunAvatarMutation:
  343. return c.AliyunAvatar.mutate(ctx, m)
  344. case *BatchMsgMutation:
  345. return c.BatchMsg.mutate(ctx, m)
  346. case *CategoryMutation:
  347. return c.Category.mutate(ctx, m)
  348. case *ChatRecordsMutation:
  349. return c.ChatRecords.mutate(ctx, m)
  350. case *ChatSessionMutation:
  351. return c.ChatSession.mutate(ctx, m)
  352. case *ContactMutation:
  353. return c.Contact.mutate(ctx, m)
  354. case *EmployeeMutation:
  355. return c.Employee.mutate(ctx, m)
  356. case *EmployeeConfigMutation:
  357. return c.EmployeeConfig.mutate(ctx, m)
  358. case *LabelMutation:
  359. return c.Label.mutate(ctx, m)
  360. case *LabelRelationshipMutation:
  361. return c.LabelRelationship.mutate(ctx, m)
  362. case *MessageMutation:
  363. return c.Message.mutate(ctx, m)
  364. case *MessageRecordsMutation:
  365. return c.MessageRecords.mutate(ctx, m)
  366. case *MsgMutation:
  367. return c.Msg.mutate(ctx, m)
  368. case *ServerMutation:
  369. return c.Server.mutate(ctx, m)
  370. case *SopNodeMutation:
  371. return c.SopNode.mutate(ctx, m)
  372. case *SopStageMutation:
  373. return c.SopStage.mutate(ctx, m)
  374. case *SopTaskMutation:
  375. return c.SopTask.mutate(ctx, m)
  376. case *TokenMutation:
  377. return c.Token.mutate(ctx, m)
  378. case *TutorialMutation:
  379. return c.Tutorial.mutate(ctx, m)
  380. case *WorkExperienceMutation:
  381. return c.WorkExperience.mutate(ctx, m)
  382. case *WxMutation:
  383. return c.Wx.mutate(ctx, m)
  384. case *WxCardMutation:
  385. return c.WxCard.mutate(ctx, m)
  386. case *WxCardUserMutation:
  387. return c.WxCardUser.mutate(ctx, m)
  388. case *WxCardVisitMutation:
  389. return c.WxCardVisit.mutate(ctx, m)
  390. default:
  391. return nil, fmt.Errorf("ent: unknown mutation type %T", m)
  392. }
  393. }
  394. // AgentClient is a client for the Agent schema.
  395. type AgentClient struct {
  396. config
  397. }
  398. // NewAgentClient returns a client for the Agent from the given config.
  399. func NewAgentClient(c config) *AgentClient {
  400. return &AgentClient{config: c}
  401. }
  402. // Use adds a list of mutation hooks to the hooks stack.
  403. // A call to `Use(f, g, h)` equals to `agent.Hooks(f(g(h())))`.
  404. func (c *AgentClient) Use(hooks ...Hook) {
  405. c.hooks.Agent = append(c.hooks.Agent, hooks...)
  406. }
  407. // Intercept adds a list of query interceptors to the interceptors stack.
  408. // A call to `Intercept(f, g, h)` equals to `agent.Intercept(f(g(h())))`.
  409. func (c *AgentClient) Intercept(interceptors ...Interceptor) {
  410. c.inters.Agent = append(c.inters.Agent, interceptors...)
  411. }
  412. // Create returns a builder for creating a Agent entity.
  413. func (c *AgentClient) Create() *AgentCreate {
  414. mutation := newAgentMutation(c.config, OpCreate)
  415. return &AgentCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  416. }
  417. // CreateBulk returns a builder for creating a bulk of Agent entities.
  418. func (c *AgentClient) CreateBulk(builders ...*AgentCreate) *AgentCreateBulk {
  419. return &AgentCreateBulk{config: c.config, builders: builders}
  420. }
  421. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  422. // a builder and applies setFunc on it.
  423. func (c *AgentClient) MapCreateBulk(slice any, setFunc func(*AgentCreate, int)) *AgentCreateBulk {
  424. rv := reflect.ValueOf(slice)
  425. if rv.Kind() != reflect.Slice {
  426. return &AgentCreateBulk{err: fmt.Errorf("calling to AgentClient.MapCreateBulk with wrong type %T, need slice", slice)}
  427. }
  428. builders := make([]*AgentCreate, rv.Len())
  429. for i := 0; i < rv.Len(); i++ {
  430. builders[i] = c.Create()
  431. setFunc(builders[i], i)
  432. }
  433. return &AgentCreateBulk{config: c.config, builders: builders}
  434. }
  435. // Update returns an update builder for Agent.
  436. func (c *AgentClient) Update() *AgentUpdate {
  437. mutation := newAgentMutation(c.config, OpUpdate)
  438. return &AgentUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  439. }
  440. // UpdateOne returns an update builder for the given entity.
  441. func (c *AgentClient) UpdateOne(a *Agent) *AgentUpdateOne {
  442. mutation := newAgentMutation(c.config, OpUpdateOne, withAgent(a))
  443. return &AgentUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  444. }
  445. // UpdateOneID returns an update builder for the given id.
  446. func (c *AgentClient) UpdateOneID(id uint64) *AgentUpdateOne {
  447. mutation := newAgentMutation(c.config, OpUpdateOne, withAgentID(id))
  448. return &AgentUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  449. }
  450. // Delete returns a delete builder for Agent.
  451. func (c *AgentClient) Delete() *AgentDelete {
  452. mutation := newAgentMutation(c.config, OpDelete)
  453. return &AgentDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  454. }
  455. // DeleteOne returns a builder for deleting the given entity.
  456. func (c *AgentClient) DeleteOne(a *Agent) *AgentDeleteOne {
  457. return c.DeleteOneID(a.ID)
  458. }
  459. // DeleteOneID returns a builder for deleting the given entity by its id.
  460. func (c *AgentClient) DeleteOneID(id uint64) *AgentDeleteOne {
  461. builder := c.Delete().Where(agent.ID(id))
  462. builder.mutation.id = &id
  463. builder.mutation.op = OpDeleteOne
  464. return &AgentDeleteOne{builder}
  465. }
  466. // Query returns a query builder for Agent.
  467. func (c *AgentClient) Query() *AgentQuery {
  468. return &AgentQuery{
  469. config: c.config,
  470. ctx: &QueryContext{Type: TypeAgent},
  471. inters: c.Interceptors(),
  472. }
  473. }
  474. // Get returns a Agent entity by its id.
  475. func (c *AgentClient) Get(ctx context.Context, id uint64) (*Agent, error) {
  476. return c.Query().Where(agent.ID(id)).Only(ctx)
  477. }
  478. // GetX is like Get, but panics if an error occurs.
  479. func (c *AgentClient) GetX(ctx context.Context, id uint64) *Agent {
  480. obj, err := c.Get(ctx, id)
  481. if err != nil {
  482. panic(err)
  483. }
  484. return obj
  485. }
  486. // QueryWxAgent queries the wx_agent edge of a Agent.
  487. func (c *AgentClient) QueryWxAgent(a *Agent) *WxQuery {
  488. query := (&WxClient{config: c.config}).Query()
  489. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  490. id := a.ID
  491. step := sqlgraph.NewStep(
  492. sqlgraph.From(agent.Table, agent.FieldID, id),
  493. sqlgraph.To(wx.Table, wx.FieldID),
  494. sqlgraph.Edge(sqlgraph.O2M, false, agent.WxAgentTable, agent.WxAgentColumn),
  495. )
  496. fromV = sqlgraph.Neighbors(a.driver.Dialect(), step)
  497. return fromV, nil
  498. }
  499. return query
  500. }
  501. // QueryTokenAgent queries the token_agent edge of a Agent.
  502. func (c *AgentClient) QueryTokenAgent(a *Agent) *TokenQuery {
  503. query := (&TokenClient{config: c.config}).Query()
  504. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  505. id := a.ID
  506. step := sqlgraph.NewStep(
  507. sqlgraph.From(agent.Table, agent.FieldID, id),
  508. sqlgraph.To(token.Table, token.FieldID),
  509. sqlgraph.Edge(sqlgraph.O2M, false, agent.TokenAgentTable, agent.TokenAgentColumn),
  510. )
  511. fromV = sqlgraph.Neighbors(a.driver.Dialect(), step)
  512. return fromV, nil
  513. }
  514. return query
  515. }
  516. // Hooks returns the client hooks.
  517. func (c *AgentClient) Hooks() []Hook {
  518. hooks := c.hooks.Agent
  519. return append(hooks[:len(hooks):len(hooks)], agent.Hooks[:]...)
  520. }
  521. // Interceptors returns the client interceptors.
  522. func (c *AgentClient) Interceptors() []Interceptor {
  523. inters := c.inters.Agent
  524. return append(inters[:len(inters):len(inters)], agent.Interceptors[:]...)
  525. }
  526. func (c *AgentClient) mutate(ctx context.Context, m *AgentMutation) (Value, error) {
  527. switch m.Op() {
  528. case OpCreate:
  529. return (&AgentCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  530. case OpUpdate:
  531. return (&AgentUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  532. case OpUpdateOne:
  533. return (&AgentUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  534. case OpDelete, OpDeleteOne:
  535. return (&AgentDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  536. default:
  537. return nil, fmt.Errorf("ent: unknown Agent mutation op: %q", m.Op())
  538. }
  539. }
  540. // AgentBaseClient is a client for the AgentBase schema.
  541. type AgentBaseClient struct {
  542. config
  543. }
  544. // NewAgentBaseClient returns a client for the AgentBase from the given config.
  545. func NewAgentBaseClient(c config) *AgentBaseClient {
  546. return &AgentBaseClient{config: c}
  547. }
  548. // Use adds a list of mutation hooks to the hooks stack.
  549. // A call to `Use(f, g, h)` equals to `agentbase.Hooks(f(g(h())))`.
  550. func (c *AgentBaseClient) Use(hooks ...Hook) {
  551. c.hooks.AgentBase = append(c.hooks.AgentBase, hooks...)
  552. }
  553. // Intercept adds a list of query interceptors to the interceptors stack.
  554. // A call to `Intercept(f, g, h)` equals to `agentbase.Intercept(f(g(h())))`.
  555. func (c *AgentBaseClient) Intercept(interceptors ...Interceptor) {
  556. c.inters.AgentBase = append(c.inters.AgentBase, interceptors...)
  557. }
  558. // Create returns a builder for creating a AgentBase entity.
  559. func (c *AgentBaseClient) Create() *AgentBaseCreate {
  560. mutation := newAgentBaseMutation(c.config, OpCreate)
  561. return &AgentBaseCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  562. }
  563. // CreateBulk returns a builder for creating a bulk of AgentBase entities.
  564. func (c *AgentBaseClient) CreateBulk(builders ...*AgentBaseCreate) *AgentBaseCreateBulk {
  565. return &AgentBaseCreateBulk{config: c.config, builders: builders}
  566. }
  567. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  568. // a builder and applies setFunc on it.
  569. func (c *AgentBaseClient) MapCreateBulk(slice any, setFunc func(*AgentBaseCreate, int)) *AgentBaseCreateBulk {
  570. rv := reflect.ValueOf(slice)
  571. if rv.Kind() != reflect.Slice {
  572. return &AgentBaseCreateBulk{err: fmt.Errorf("calling to AgentBaseClient.MapCreateBulk with wrong type %T, need slice", slice)}
  573. }
  574. builders := make([]*AgentBaseCreate, rv.Len())
  575. for i := 0; i < rv.Len(); i++ {
  576. builders[i] = c.Create()
  577. setFunc(builders[i], i)
  578. }
  579. return &AgentBaseCreateBulk{config: c.config, builders: builders}
  580. }
  581. // Update returns an update builder for AgentBase.
  582. func (c *AgentBaseClient) Update() *AgentBaseUpdate {
  583. mutation := newAgentBaseMutation(c.config, OpUpdate)
  584. return &AgentBaseUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  585. }
  586. // UpdateOne returns an update builder for the given entity.
  587. func (c *AgentBaseClient) UpdateOne(ab *AgentBase) *AgentBaseUpdateOne {
  588. mutation := newAgentBaseMutation(c.config, OpUpdateOne, withAgentBase(ab))
  589. return &AgentBaseUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  590. }
  591. // UpdateOneID returns an update builder for the given id.
  592. func (c *AgentBaseClient) UpdateOneID(id string) *AgentBaseUpdateOne {
  593. mutation := newAgentBaseMutation(c.config, OpUpdateOne, withAgentBaseID(id))
  594. return &AgentBaseUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  595. }
  596. // Delete returns a delete builder for AgentBase.
  597. func (c *AgentBaseClient) Delete() *AgentBaseDelete {
  598. mutation := newAgentBaseMutation(c.config, OpDelete)
  599. return &AgentBaseDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  600. }
  601. // DeleteOne returns a builder for deleting the given entity.
  602. func (c *AgentBaseClient) DeleteOne(ab *AgentBase) *AgentBaseDeleteOne {
  603. return c.DeleteOneID(ab.ID)
  604. }
  605. // DeleteOneID returns a builder for deleting the given entity by its id.
  606. func (c *AgentBaseClient) DeleteOneID(id string) *AgentBaseDeleteOne {
  607. builder := c.Delete().Where(agentbase.ID(id))
  608. builder.mutation.id = &id
  609. builder.mutation.op = OpDeleteOne
  610. return &AgentBaseDeleteOne{builder}
  611. }
  612. // Query returns a query builder for AgentBase.
  613. func (c *AgentBaseClient) Query() *AgentBaseQuery {
  614. return &AgentBaseQuery{
  615. config: c.config,
  616. ctx: &QueryContext{Type: TypeAgentBase},
  617. inters: c.Interceptors(),
  618. }
  619. }
  620. // Get returns a AgentBase entity by its id.
  621. func (c *AgentBaseClient) Get(ctx context.Context, id string) (*AgentBase, error) {
  622. return c.Query().Where(agentbase.ID(id)).Only(ctx)
  623. }
  624. // GetX is like Get, but panics if an error occurs.
  625. func (c *AgentBaseClient) GetX(ctx context.Context, id string) *AgentBase {
  626. obj, err := c.Get(ctx, id)
  627. if err != nil {
  628. panic(err)
  629. }
  630. return obj
  631. }
  632. // QueryWxAgent queries the wx_agent edge of a AgentBase.
  633. func (c *AgentBaseClient) QueryWxAgent(ab *AgentBase) *WxQuery {
  634. query := (&WxClient{config: c.config}).Query()
  635. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  636. id := ab.ID
  637. step := sqlgraph.NewStep(
  638. sqlgraph.From(agentbase.Table, agentbase.FieldID, id),
  639. sqlgraph.To(wx.Table, wx.FieldID),
  640. sqlgraph.Edge(sqlgraph.O2M, false, agentbase.WxAgentTable, agentbase.WxAgentColumn),
  641. )
  642. fromV = sqlgraph.Neighbors(ab.driver.Dialect(), step)
  643. return fromV, nil
  644. }
  645. return query
  646. }
  647. // Hooks returns the client hooks.
  648. func (c *AgentBaseClient) Hooks() []Hook {
  649. return c.hooks.AgentBase
  650. }
  651. // Interceptors returns the client interceptors.
  652. func (c *AgentBaseClient) Interceptors() []Interceptor {
  653. return c.inters.AgentBase
  654. }
  655. func (c *AgentBaseClient) mutate(ctx context.Context, m *AgentBaseMutation) (Value, error) {
  656. switch m.Op() {
  657. case OpCreate:
  658. return (&AgentBaseCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  659. case OpUpdate:
  660. return (&AgentBaseUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  661. case OpUpdateOne:
  662. return (&AgentBaseUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  663. case OpDelete, OpDeleteOne:
  664. return (&AgentBaseDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  665. default:
  666. return nil, fmt.Errorf("ent: unknown AgentBase mutation op: %q", m.Op())
  667. }
  668. }
  669. // AliyunAvatarClient is a client for the AliyunAvatar schema.
  670. type AliyunAvatarClient struct {
  671. config
  672. }
  673. // NewAliyunAvatarClient returns a client for the AliyunAvatar from the given config.
  674. func NewAliyunAvatarClient(c config) *AliyunAvatarClient {
  675. return &AliyunAvatarClient{config: c}
  676. }
  677. // Use adds a list of mutation hooks to the hooks stack.
  678. // A call to `Use(f, g, h)` equals to `aliyunavatar.Hooks(f(g(h())))`.
  679. func (c *AliyunAvatarClient) Use(hooks ...Hook) {
  680. c.hooks.AliyunAvatar = append(c.hooks.AliyunAvatar, hooks...)
  681. }
  682. // Intercept adds a list of query interceptors to the interceptors stack.
  683. // A call to `Intercept(f, g, h)` equals to `aliyunavatar.Intercept(f(g(h())))`.
  684. func (c *AliyunAvatarClient) Intercept(interceptors ...Interceptor) {
  685. c.inters.AliyunAvatar = append(c.inters.AliyunAvatar, interceptors...)
  686. }
  687. // Create returns a builder for creating a AliyunAvatar entity.
  688. func (c *AliyunAvatarClient) Create() *AliyunAvatarCreate {
  689. mutation := newAliyunAvatarMutation(c.config, OpCreate)
  690. return &AliyunAvatarCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  691. }
  692. // CreateBulk returns a builder for creating a bulk of AliyunAvatar entities.
  693. func (c *AliyunAvatarClient) CreateBulk(builders ...*AliyunAvatarCreate) *AliyunAvatarCreateBulk {
  694. return &AliyunAvatarCreateBulk{config: c.config, builders: builders}
  695. }
  696. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  697. // a builder and applies setFunc on it.
  698. func (c *AliyunAvatarClient) MapCreateBulk(slice any, setFunc func(*AliyunAvatarCreate, int)) *AliyunAvatarCreateBulk {
  699. rv := reflect.ValueOf(slice)
  700. if rv.Kind() != reflect.Slice {
  701. return &AliyunAvatarCreateBulk{err: fmt.Errorf("calling to AliyunAvatarClient.MapCreateBulk with wrong type %T, need slice", slice)}
  702. }
  703. builders := make([]*AliyunAvatarCreate, rv.Len())
  704. for i := 0; i < rv.Len(); i++ {
  705. builders[i] = c.Create()
  706. setFunc(builders[i], i)
  707. }
  708. return &AliyunAvatarCreateBulk{config: c.config, builders: builders}
  709. }
  710. // Update returns an update builder for AliyunAvatar.
  711. func (c *AliyunAvatarClient) Update() *AliyunAvatarUpdate {
  712. mutation := newAliyunAvatarMutation(c.config, OpUpdate)
  713. return &AliyunAvatarUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  714. }
  715. // UpdateOne returns an update builder for the given entity.
  716. func (c *AliyunAvatarClient) UpdateOne(aa *AliyunAvatar) *AliyunAvatarUpdateOne {
  717. mutation := newAliyunAvatarMutation(c.config, OpUpdateOne, withAliyunAvatar(aa))
  718. return &AliyunAvatarUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  719. }
  720. // UpdateOneID returns an update builder for the given id.
  721. func (c *AliyunAvatarClient) UpdateOneID(id uint64) *AliyunAvatarUpdateOne {
  722. mutation := newAliyunAvatarMutation(c.config, OpUpdateOne, withAliyunAvatarID(id))
  723. return &AliyunAvatarUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  724. }
  725. // Delete returns a delete builder for AliyunAvatar.
  726. func (c *AliyunAvatarClient) Delete() *AliyunAvatarDelete {
  727. mutation := newAliyunAvatarMutation(c.config, OpDelete)
  728. return &AliyunAvatarDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  729. }
  730. // DeleteOne returns a builder for deleting the given entity.
  731. func (c *AliyunAvatarClient) DeleteOne(aa *AliyunAvatar) *AliyunAvatarDeleteOne {
  732. return c.DeleteOneID(aa.ID)
  733. }
  734. // DeleteOneID returns a builder for deleting the given entity by its id.
  735. func (c *AliyunAvatarClient) DeleteOneID(id uint64) *AliyunAvatarDeleteOne {
  736. builder := c.Delete().Where(aliyunavatar.ID(id))
  737. builder.mutation.id = &id
  738. builder.mutation.op = OpDeleteOne
  739. return &AliyunAvatarDeleteOne{builder}
  740. }
  741. // Query returns a query builder for AliyunAvatar.
  742. func (c *AliyunAvatarClient) Query() *AliyunAvatarQuery {
  743. return &AliyunAvatarQuery{
  744. config: c.config,
  745. ctx: &QueryContext{Type: TypeAliyunAvatar},
  746. inters: c.Interceptors(),
  747. }
  748. }
  749. // Get returns a AliyunAvatar entity by its id.
  750. func (c *AliyunAvatarClient) Get(ctx context.Context, id uint64) (*AliyunAvatar, error) {
  751. return c.Query().Where(aliyunavatar.ID(id)).Only(ctx)
  752. }
  753. // GetX is like Get, but panics if an error occurs.
  754. func (c *AliyunAvatarClient) GetX(ctx context.Context, id uint64) *AliyunAvatar {
  755. obj, err := c.Get(ctx, id)
  756. if err != nil {
  757. panic(err)
  758. }
  759. return obj
  760. }
  761. // Hooks returns the client hooks.
  762. func (c *AliyunAvatarClient) Hooks() []Hook {
  763. hooks := c.hooks.AliyunAvatar
  764. return append(hooks[:len(hooks):len(hooks)], aliyunavatar.Hooks[:]...)
  765. }
  766. // Interceptors returns the client interceptors.
  767. func (c *AliyunAvatarClient) Interceptors() []Interceptor {
  768. inters := c.inters.AliyunAvatar
  769. return append(inters[:len(inters):len(inters)], aliyunavatar.Interceptors[:]...)
  770. }
  771. func (c *AliyunAvatarClient) mutate(ctx context.Context, m *AliyunAvatarMutation) (Value, error) {
  772. switch m.Op() {
  773. case OpCreate:
  774. return (&AliyunAvatarCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  775. case OpUpdate:
  776. return (&AliyunAvatarUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  777. case OpUpdateOne:
  778. return (&AliyunAvatarUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  779. case OpDelete, OpDeleteOne:
  780. return (&AliyunAvatarDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  781. default:
  782. return nil, fmt.Errorf("ent: unknown AliyunAvatar mutation op: %q", m.Op())
  783. }
  784. }
  785. // BatchMsgClient is a client for the BatchMsg schema.
  786. type BatchMsgClient struct {
  787. config
  788. }
  789. // NewBatchMsgClient returns a client for the BatchMsg from the given config.
  790. func NewBatchMsgClient(c config) *BatchMsgClient {
  791. return &BatchMsgClient{config: c}
  792. }
  793. // Use adds a list of mutation hooks to the hooks stack.
  794. // A call to `Use(f, g, h)` equals to `batchmsg.Hooks(f(g(h())))`.
  795. func (c *BatchMsgClient) Use(hooks ...Hook) {
  796. c.hooks.BatchMsg = append(c.hooks.BatchMsg, hooks...)
  797. }
  798. // Intercept adds a list of query interceptors to the interceptors stack.
  799. // A call to `Intercept(f, g, h)` equals to `batchmsg.Intercept(f(g(h())))`.
  800. func (c *BatchMsgClient) Intercept(interceptors ...Interceptor) {
  801. c.inters.BatchMsg = append(c.inters.BatchMsg, interceptors...)
  802. }
  803. // Create returns a builder for creating a BatchMsg entity.
  804. func (c *BatchMsgClient) Create() *BatchMsgCreate {
  805. mutation := newBatchMsgMutation(c.config, OpCreate)
  806. return &BatchMsgCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  807. }
  808. // CreateBulk returns a builder for creating a bulk of BatchMsg entities.
  809. func (c *BatchMsgClient) CreateBulk(builders ...*BatchMsgCreate) *BatchMsgCreateBulk {
  810. return &BatchMsgCreateBulk{config: c.config, builders: builders}
  811. }
  812. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  813. // a builder and applies setFunc on it.
  814. func (c *BatchMsgClient) MapCreateBulk(slice any, setFunc func(*BatchMsgCreate, int)) *BatchMsgCreateBulk {
  815. rv := reflect.ValueOf(slice)
  816. if rv.Kind() != reflect.Slice {
  817. return &BatchMsgCreateBulk{err: fmt.Errorf("calling to BatchMsgClient.MapCreateBulk with wrong type %T, need slice", slice)}
  818. }
  819. builders := make([]*BatchMsgCreate, rv.Len())
  820. for i := 0; i < rv.Len(); i++ {
  821. builders[i] = c.Create()
  822. setFunc(builders[i], i)
  823. }
  824. return &BatchMsgCreateBulk{config: c.config, builders: builders}
  825. }
  826. // Update returns an update builder for BatchMsg.
  827. func (c *BatchMsgClient) Update() *BatchMsgUpdate {
  828. mutation := newBatchMsgMutation(c.config, OpUpdate)
  829. return &BatchMsgUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  830. }
  831. // UpdateOne returns an update builder for the given entity.
  832. func (c *BatchMsgClient) UpdateOne(bm *BatchMsg) *BatchMsgUpdateOne {
  833. mutation := newBatchMsgMutation(c.config, OpUpdateOne, withBatchMsg(bm))
  834. return &BatchMsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  835. }
  836. // UpdateOneID returns an update builder for the given id.
  837. func (c *BatchMsgClient) UpdateOneID(id uint64) *BatchMsgUpdateOne {
  838. mutation := newBatchMsgMutation(c.config, OpUpdateOne, withBatchMsgID(id))
  839. return &BatchMsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  840. }
  841. // Delete returns a delete builder for BatchMsg.
  842. func (c *BatchMsgClient) Delete() *BatchMsgDelete {
  843. mutation := newBatchMsgMutation(c.config, OpDelete)
  844. return &BatchMsgDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  845. }
  846. // DeleteOne returns a builder for deleting the given entity.
  847. func (c *BatchMsgClient) DeleteOne(bm *BatchMsg) *BatchMsgDeleteOne {
  848. return c.DeleteOneID(bm.ID)
  849. }
  850. // DeleteOneID returns a builder for deleting the given entity by its id.
  851. func (c *BatchMsgClient) DeleteOneID(id uint64) *BatchMsgDeleteOne {
  852. builder := c.Delete().Where(batchmsg.ID(id))
  853. builder.mutation.id = &id
  854. builder.mutation.op = OpDeleteOne
  855. return &BatchMsgDeleteOne{builder}
  856. }
  857. // Query returns a query builder for BatchMsg.
  858. func (c *BatchMsgClient) Query() *BatchMsgQuery {
  859. return &BatchMsgQuery{
  860. config: c.config,
  861. ctx: &QueryContext{Type: TypeBatchMsg},
  862. inters: c.Interceptors(),
  863. }
  864. }
  865. // Get returns a BatchMsg entity by its id.
  866. func (c *BatchMsgClient) Get(ctx context.Context, id uint64) (*BatchMsg, error) {
  867. return c.Query().Where(batchmsg.ID(id)).Only(ctx)
  868. }
  869. // GetX is like Get, but panics if an error occurs.
  870. func (c *BatchMsgClient) GetX(ctx context.Context, id uint64) *BatchMsg {
  871. obj, err := c.Get(ctx, id)
  872. if err != nil {
  873. panic(err)
  874. }
  875. return obj
  876. }
  877. // Hooks returns the client hooks.
  878. func (c *BatchMsgClient) Hooks() []Hook {
  879. hooks := c.hooks.BatchMsg
  880. return append(hooks[:len(hooks):len(hooks)], batchmsg.Hooks[:]...)
  881. }
  882. // Interceptors returns the client interceptors.
  883. func (c *BatchMsgClient) Interceptors() []Interceptor {
  884. inters := c.inters.BatchMsg
  885. return append(inters[:len(inters):len(inters)], batchmsg.Interceptors[:]...)
  886. }
  887. func (c *BatchMsgClient) mutate(ctx context.Context, m *BatchMsgMutation) (Value, error) {
  888. switch m.Op() {
  889. case OpCreate:
  890. return (&BatchMsgCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  891. case OpUpdate:
  892. return (&BatchMsgUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  893. case OpUpdateOne:
  894. return (&BatchMsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  895. case OpDelete, OpDeleteOne:
  896. return (&BatchMsgDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  897. default:
  898. return nil, fmt.Errorf("ent: unknown BatchMsg mutation op: %q", m.Op())
  899. }
  900. }
  901. // CategoryClient is a client for the Category schema.
  902. type CategoryClient struct {
  903. config
  904. }
  905. // NewCategoryClient returns a client for the Category from the given config.
  906. func NewCategoryClient(c config) *CategoryClient {
  907. return &CategoryClient{config: c}
  908. }
  909. // Use adds a list of mutation hooks to the hooks stack.
  910. // A call to `Use(f, g, h)` equals to `category.Hooks(f(g(h())))`.
  911. func (c *CategoryClient) Use(hooks ...Hook) {
  912. c.hooks.Category = append(c.hooks.Category, hooks...)
  913. }
  914. // Intercept adds a list of query interceptors to the interceptors stack.
  915. // A call to `Intercept(f, g, h)` equals to `category.Intercept(f(g(h())))`.
  916. func (c *CategoryClient) Intercept(interceptors ...Interceptor) {
  917. c.inters.Category = append(c.inters.Category, interceptors...)
  918. }
  919. // Create returns a builder for creating a Category entity.
  920. func (c *CategoryClient) Create() *CategoryCreate {
  921. mutation := newCategoryMutation(c.config, OpCreate)
  922. return &CategoryCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  923. }
  924. // CreateBulk returns a builder for creating a bulk of Category entities.
  925. func (c *CategoryClient) CreateBulk(builders ...*CategoryCreate) *CategoryCreateBulk {
  926. return &CategoryCreateBulk{config: c.config, builders: builders}
  927. }
  928. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  929. // a builder and applies setFunc on it.
  930. func (c *CategoryClient) MapCreateBulk(slice any, setFunc func(*CategoryCreate, int)) *CategoryCreateBulk {
  931. rv := reflect.ValueOf(slice)
  932. if rv.Kind() != reflect.Slice {
  933. return &CategoryCreateBulk{err: fmt.Errorf("calling to CategoryClient.MapCreateBulk with wrong type %T, need slice", slice)}
  934. }
  935. builders := make([]*CategoryCreate, rv.Len())
  936. for i := 0; i < rv.Len(); i++ {
  937. builders[i] = c.Create()
  938. setFunc(builders[i], i)
  939. }
  940. return &CategoryCreateBulk{config: c.config, builders: builders}
  941. }
  942. // Update returns an update builder for Category.
  943. func (c *CategoryClient) Update() *CategoryUpdate {
  944. mutation := newCategoryMutation(c.config, OpUpdate)
  945. return &CategoryUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  946. }
  947. // UpdateOne returns an update builder for the given entity.
  948. func (c *CategoryClient) UpdateOne(ca *Category) *CategoryUpdateOne {
  949. mutation := newCategoryMutation(c.config, OpUpdateOne, withCategory(ca))
  950. return &CategoryUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  951. }
  952. // UpdateOneID returns an update builder for the given id.
  953. func (c *CategoryClient) UpdateOneID(id uint64) *CategoryUpdateOne {
  954. mutation := newCategoryMutation(c.config, OpUpdateOne, withCategoryID(id))
  955. return &CategoryUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  956. }
  957. // Delete returns a delete builder for Category.
  958. func (c *CategoryClient) Delete() *CategoryDelete {
  959. mutation := newCategoryMutation(c.config, OpDelete)
  960. return &CategoryDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  961. }
  962. // DeleteOne returns a builder for deleting the given entity.
  963. func (c *CategoryClient) DeleteOne(ca *Category) *CategoryDeleteOne {
  964. return c.DeleteOneID(ca.ID)
  965. }
  966. // DeleteOneID returns a builder for deleting the given entity by its id.
  967. func (c *CategoryClient) DeleteOneID(id uint64) *CategoryDeleteOne {
  968. builder := c.Delete().Where(category.ID(id))
  969. builder.mutation.id = &id
  970. builder.mutation.op = OpDeleteOne
  971. return &CategoryDeleteOne{builder}
  972. }
  973. // Query returns a query builder for Category.
  974. func (c *CategoryClient) Query() *CategoryQuery {
  975. return &CategoryQuery{
  976. config: c.config,
  977. ctx: &QueryContext{Type: TypeCategory},
  978. inters: c.Interceptors(),
  979. }
  980. }
  981. // Get returns a Category entity by its id.
  982. func (c *CategoryClient) Get(ctx context.Context, id uint64) (*Category, error) {
  983. return c.Query().Where(category.ID(id)).Only(ctx)
  984. }
  985. // GetX is like Get, but panics if an error occurs.
  986. func (c *CategoryClient) GetX(ctx context.Context, id uint64) *Category {
  987. obj, err := c.Get(ctx, id)
  988. if err != nil {
  989. panic(err)
  990. }
  991. return obj
  992. }
  993. // Hooks returns the client hooks.
  994. func (c *CategoryClient) Hooks() []Hook {
  995. hooks := c.hooks.Category
  996. return append(hooks[:len(hooks):len(hooks)], category.Hooks[:]...)
  997. }
  998. // Interceptors returns the client interceptors.
  999. func (c *CategoryClient) Interceptors() []Interceptor {
  1000. inters := c.inters.Category
  1001. return append(inters[:len(inters):len(inters)], category.Interceptors[:]...)
  1002. }
  1003. func (c *CategoryClient) mutate(ctx context.Context, m *CategoryMutation) (Value, error) {
  1004. switch m.Op() {
  1005. case OpCreate:
  1006. return (&CategoryCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1007. case OpUpdate:
  1008. return (&CategoryUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1009. case OpUpdateOne:
  1010. return (&CategoryUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1011. case OpDelete, OpDeleteOne:
  1012. return (&CategoryDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1013. default:
  1014. return nil, fmt.Errorf("ent: unknown Category mutation op: %q", m.Op())
  1015. }
  1016. }
  1017. // ChatRecordsClient is a client for the ChatRecords schema.
  1018. type ChatRecordsClient struct {
  1019. config
  1020. }
  1021. // NewChatRecordsClient returns a client for the ChatRecords from the given config.
  1022. func NewChatRecordsClient(c config) *ChatRecordsClient {
  1023. return &ChatRecordsClient{config: c}
  1024. }
  1025. // Use adds a list of mutation hooks to the hooks stack.
  1026. // A call to `Use(f, g, h)` equals to `chatrecords.Hooks(f(g(h())))`.
  1027. func (c *ChatRecordsClient) Use(hooks ...Hook) {
  1028. c.hooks.ChatRecords = append(c.hooks.ChatRecords, hooks...)
  1029. }
  1030. // Intercept adds a list of query interceptors to the interceptors stack.
  1031. // A call to `Intercept(f, g, h)` equals to `chatrecords.Intercept(f(g(h())))`.
  1032. func (c *ChatRecordsClient) Intercept(interceptors ...Interceptor) {
  1033. c.inters.ChatRecords = append(c.inters.ChatRecords, interceptors...)
  1034. }
  1035. // Create returns a builder for creating a ChatRecords entity.
  1036. func (c *ChatRecordsClient) Create() *ChatRecordsCreate {
  1037. mutation := newChatRecordsMutation(c.config, OpCreate)
  1038. return &ChatRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1039. }
  1040. // CreateBulk returns a builder for creating a bulk of ChatRecords entities.
  1041. func (c *ChatRecordsClient) CreateBulk(builders ...*ChatRecordsCreate) *ChatRecordsCreateBulk {
  1042. return &ChatRecordsCreateBulk{config: c.config, builders: builders}
  1043. }
  1044. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1045. // a builder and applies setFunc on it.
  1046. func (c *ChatRecordsClient) MapCreateBulk(slice any, setFunc func(*ChatRecordsCreate, int)) *ChatRecordsCreateBulk {
  1047. rv := reflect.ValueOf(slice)
  1048. if rv.Kind() != reflect.Slice {
  1049. return &ChatRecordsCreateBulk{err: fmt.Errorf("calling to ChatRecordsClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1050. }
  1051. builders := make([]*ChatRecordsCreate, rv.Len())
  1052. for i := 0; i < rv.Len(); i++ {
  1053. builders[i] = c.Create()
  1054. setFunc(builders[i], i)
  1055. }
  1056. return &ChatRecordsCreateBulk{config: c.config, builders: builders}
  1057. }
  1058. // Update returns an update builder for ChatRecords.
  1059. func (c *ChatRecordsClient) Update() *ChatRecordsUpdate {
  1060. mutation := newChatRecordsMutation(c.config, OpUpdate)
  1061. return &ChatRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1062. }
  1063. // UpdateOne returns an update builder for the given entity.
  1064. func (c *ChatRecordsClient) UpdateOne(cr *ChatRecords) *ChatRecordsUpdateOne {
  1065. mutation := newChatRecordsMutation(c.config, OpUpdateOne, withChatRecords(cr))
  1066. return &ChatRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1067. }
  1068. // UpdateOneID returns an update builder for the given id.
  1069. func (c *ChatRecordsClient) UpdateOneID(id uint64) *ChatRecordsUpdateOne {
  1070. mutation := newChatRecordsMutation(c.config, OpUpdateOne, withChatRecordsID(id))
  1071. return &ChatRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1072. }
  1073. // Delete returns a delete builder for ChatRecords.
  1074. func (c *ChatRecordsClient) Delete() *ChatRecordsDelete {
  1075. mutation := newChatRecordsMutation(c.config, OpDelete)
  1076. return &ChatRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1077. }
  1078. // DeleteOne returns a builder for deleting the given entity.
  1079. func (c *ChatRecordsClient) DeleteOne(cr *ChatRecords) *ChatRecordsDeleteOne {
  1080. return c.DeleteOneID(cr.ID)
  1081. }
  1082. // DeleteOneID returns a builder for deleting the given entity by its id.
  1083. func (c *ChatRecordsClient) DeleteOneID(id uint64) *ChatRecordsDeleteOne {
  1084. builder := c.Delete().Where(chatrecords.ID(id))
  1085. builder.mutation.id = &id
  1086. builder.mutation.op = OpDeleteOne
  1087. return &ChatRecordsDeleteOne{builder}
  1088. }
  1089. // Query returns a query builder for ChatRecords.
  1090. func (c *ChatRecordsClient) Query() *ChatRecordsQuery {
  1091. return &ChatRecordsQuery{
  1092. config: c.config,
  1093. ctx: &QueryContext{Type: TypeChatRecords},
  1094. inters: c.Interceptors(),
  1095. }
  1096. }
  1097. // Get returns a ChatRecords entity by its id.
  1098. func (c *ChatRecordsClient) Get(ctx context.Context, id uint64) (*ChatRecords, error) {
  1099. return c.Query().Where(chatrecords.ID(id)).Only(ctx)
  1100. }
  1101. // GetX is like Get, but panics if an error occurs.
  1102. func (c *ChatRecordsClient) GetX(ctx context.Context, id uint64) *ChatRecords {
  1103. obj, err := c.Get(ctx, id)
  1104. if err != nil {
  1105. panic(err)
  1106. }
  1107. return obj
  1108. }
  1109. // Hooks returns the client hooks.
  1110. func (c *ChatRecordsClient) Hooks() []Hook {
  1111. hooks := c.hooks.ChatRecords
  1112. return append(hooks[:len(hooks):len(hooks)], chatrecords.Hooks[:]...)
  1113. }
  1114. // Interceptors returns the client interceptors.
  1115. func (c *ChatRecordsClient) Interceptors() []Interceptor {
  1116. inters := c.inters.ChatRecords
  1117. return append(inters[:len(inters):len(inters)], chatrecords.Interceptors[:]...)
  1118. }
  1119. func (c *ChatRecordsClient) mutate(ctx context.Context, m *ChatRecordsMutation) (Value, error) {
  1120. switch m.Op() {
  1121. case OpCreate:
  1122. return (&ChatRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1123. case OpUpdate:
  1124. return (&ChatRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1125. case OpUpdateOne:
  1126. return (&ChatRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1127. case OpDelete, OpDeleteOne:
  1128. return (&ChatRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1129. default:
  1130. return nil, fmt.Errorf("ent: unknown ChatRecords mutation op: %q", m.Op())
  1131. }
  1132. }
  1133. // ChatSessionClient is a client for the ChatSession schema.
  1134. type ChatSessionClient struct {
  1135. config
  1136. }
  1137. // NewChatSessionClient returns a client for the ChatSession from the given config.
  1138. func NewChatSessionClient(c config) *ChatSessionClient {
  1139. return &ChatSessionClient{config: c}
  1140. }
  1141. // Use adds a list of mutation hooks to the hooks stack.
  1142. // A call to `Use(f, g, h)` equals to `chatsession.Hooks(f(g(h())))`.
  1143. func (c *ChatSessionClient) Use(hooks ...Hook) {
  1144. c.hooks.ChatSession = append(c.hooks.ChatSession, hooks...)
  1145. }
  1146. // Intercept adds a list of query interceptors to the interceptors stack.
  1147. // A call to `Intercept(f, g, h)` equals to `chatsession.Intercept(f(g(h())))`.
  1148. func (c *ChatSessionClient) Intercept(interceptors ...Interceptor) {
  1149. c.inters.ChatSession = append(c.inters.ChatSession, interceptors...)
  1150. }
  1151. // Create returns a builder for creating a ChatSession entity.
  1152. func (c *ChatSessionClient) Create() *ChatSessionCreate {
  1153. mutation := newChatSessionMutation(c.config, OpCreate)
  1154. return &ChatSessionCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1155. }
  1156. // CreateBulk returns a builder for creating a bulk of ChatSession entities.
  1157. func (c *ChatSessionClient) CreateBulk(builders ...*ChatSessionCreate) *ChatSessionCreateBulk {
  1158. return &ChatSessionCreateBulk{config: c.config, builders: builders}
  1159. }
  1160. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1161. // a builder and applies setFunc on it.
  1162. func (c *ChatSessionClient) MapCreateBulk(slice any, setFunc func(*ChatSessionCreate, int)) *ChatSessionCreateBulk {
  1163. rv := reflect.ValueOf(slice)
  1164. if rv.Kind() != reflect.Slice {
  1165. return &ChatSessionCreateBulk{err: fmt.Errorf("calling to ChatSessionClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1166. }
  1167. builders := make([]*ChatSessionCreate, rv.Len())
  1168. for i := 0; i < rv.Len(); i++ {
  1169. builders[i] = c.Create()
  1170. setFunc(builders[i], i)
  1171. }
  1172. return &ChatSessionCreateBulk{config: c.config, builders: builders}
  1173. }
  1174. // Update returns an update builder for ChatSession.
  1175. func (c *ChatSessionClient) Update() *ChatSessionUpdate {
  1176. mutation := newChatSessionMutation(c.config, OpUpdate)
  1177. return &ChatSessionUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1178. }
  1179. // UpdateOne returns an update builder for the given entity.
  1180. func (c *ChatSessionClient) UpdateOne(cs *ChatSession) *ChatSessionUpdateOne {
  1181. mutation := newChatSessionMutation(c.config, OpUpdateOne, withChatSession(cs))
  1182. return &ChatSessionUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1183. }
  1184. // UpdateOneID returns an update builder for the given id.
  1185. func (c *ChatSessionClient) UpdateOneID(id uint64) *ChatSessionUpdateOne {
  1186. mutation := newChatSessionMutation(c.config, OpUpdateOne, withChatSessionID(id))
  1187. return &ChatSessionUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1188. }
  1189. // Delete returns a delete builder for ChatSession.
  1190. func (c *ChatSessionClient) Delete() *ChatSessionDelete {
  1191. mutation := newChatSessionMutation(c.config, OpDelete)
  1192. return &ChatSessionDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1193. }
  1194. // DeleteOne returns a builder for deleting the given entity.
  1195. func (c *ChatSessionClient) DeleteOne(cs *ChatSession) *ChatSessionDeleteOne {
  1196. return c.DeleteOneID(cs.ID)
  1197. }
  1198. // DeleteOneID returns a builder for deleting the given entity by its id.
  1199. func (c *ChatSessionClient) DeleteOneID(id uint64) *ChatSessionDeleteOne {
  1200. builder := c.Delete().Where(chatsession.ID(id))
  1201. builder.mutation.id = &id
  1202. builder.mutation.op = OpDeleteOne
  1203. return &ChatSessionDeleteOne{builder}
  1204. }
  1205. // Query returns a query builder for ChatSession.
  1206. func (c *ChatSessionClient) Query() *ChatSessionQuery {
  1207. return &ChatSessionQuery{
  1208. config: c.config,
  1209. ctx: &QueryContext{Type: TypeChatSession},
  1210. inters: c.Interceptors(),
  1211. }
  1212. }
  1213. // Get returns a ChatSession entity by its id.
  1214. func (c *ChatSessionClient) Get(ctx context.Context, id uint64) (*ChatSession, error) {
  1215. return c.Query().Where(chatsession.ID(id)).Only(ctx)
  1216. }
  1217. // GetX is like Get, but panics if an error occurs.
  1218. func (c *ChatSessionClient) GetX(ctx context.Context, id uint64) *ChatSession {
  1219. obj, err := c.Get(ctx, id)
  1220. if err != nil {
  1221. panic(err)
  1222. }
  1223. return obj
  1224. }
  1225. // Hooks returns the client hooks.
  1226. func (c *ChatSessionClient) Hooks() []Hook {
  1227. hooks := c.hooks.ChatSession
  1228. return append(hooks[:len(hooks):len(hooks)], chatsession.Hooks[:]...)
  1229. }
  1230. // Interceptors returns the client interceptors.
  1231. func (c *ChatSessionClient) Interceptors() []Interceptor {
  1232. inters := c.inters.ChatSession
  1233. return append(inters[:len(inters):len(inters)], chatsession.Interceptors[:]...)
  1234. }
  1235. func (c *ChatSessionClient) mutate(ctx context.Context, m *ChatSessionMutation) (Value, error) {
  1236. switch m.Op() {
  1237. case OpCreate:
  1238. return (&ChatSessionCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1239. case OpUpdate:
  1240. return (&ChatSessionUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1241. case OpUpdateOne:
  1242. return (&ChatSessionUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1243. case OpDelete, OpDeleteOne:
  1244. return (&ChatSessionDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1245. default:
  1246. return nil, fmt.Errorf("ent: unknown ChatSession mutation op: %q", m.Op())
  1247. }
  1248. }
  1249. // ContactClient is a client for the Contact schema.
  1250. type ContactClient struct {
  1251. config
  1252. }
  1253. // NewContactClient returns a client for the Contact from the given config.
  1254. func NewContactClient(c config) *ContactClient {
  1255. return &ContactClient{config: c}
  1256. }
  1257. // Use adds a list of mutation hooks to the hooks stack.
  1258. // A call to `Use(f, g, h)` equals to `contact.Hooks(f(g(h())))`.
  1259. func (c *ContactClient) Use(hooks ...Hook) {
  1260. c.hooks.Contact = append(c.hooks.Contact, hooks...)
  1261. }
  1262. // Intercept adds a list of query interceptors to the interceptors stack.
  1263. // A call to `Intercept(f, g, h)` equals to `contact.Intercept(f(g(h())))`.
  1264. func (c *ContactClient) Intercept(interceptors ...Interceptor) {
  1265. c.inters.Contact = append(c.inters.Contact, interceptors...)
  1266. }
  1267. // Create returns a builder for creating a Contact entity.
  1268. func (c *ContactClient) Create() *ContactCreate {
  1269. mutation := newContactMutation(c.config, OpCreate)
  1270. return &ContactCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1271. }
  1272. // CreateBulk returns a builder for creating a bulk of Contact entities.
  1273. func (c *ContactClient) CreateBulk(builders ...*ContactCreate) *ContactCreateBulk {
  1274. return &ContactCreateBulk{config: c.config, builders: builders}
  1275. }
  1276. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1277. // a builder and applies setFunc on it.
  1278. func (c *ContactClient) MapCreateBulk(slice any, setFunc func(*ContactCreate, int)) *ContactCreateBulk {
  1279. rv := reflect.ValueOf(slice)
  1280. if rv.Kind() != reflect.Slice {
  1281. return &ContactCreateBulk{err: fmt.Errorf("calling to ContactClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1282. }
  1283. builders := make([]*ContactCreate, rv.Len())
  1284. for i := 0; i < rv.Len(); i++ {
  1285. builders[i] = c.Create()
  1286. setFunc(builders[i], i)
  1287. }
  1288. return &ContactCreateBulk{config: c.config, builders: builders}
  1289. }
  1290. // Update returns an update builder for Contact.
  1291. func (c *ContactClient) Update() *ContactUpdate {
  1292. mutation := newContactMutation(c.config, OpUpdate)
  1293. return &ContactUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1294. }
  1295. // UpdateOne returns an update builder for the given entity.
  1296. func (c *ContactClient) UpdateOne(co *Contact) *ContactUpdateOne {
  1297. mutation := newContactMutation(c.config, OpUpdateOne, withContact(co))
  1298. return &ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1299. }
  1300. // UpdateOneID returns an update builder for the given id.
  1301. func (c *ContactClient) UpdateOneID(id uint64) *ContactUpdateOne {
  1302. mutation := newContactMutation(c.config, OpUpdateOne, withContactID(id))
  1303. return &ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1304. }
  1305. // Delete returns a delete builder for Contact.
  1306. func (c *ContactClient) Delete() *ContactDelete {
  1307. mutation := newContactMutation(c.config, OpDelete)
  1308. return &ContactDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1309. }
  1310. // DeleteOne returns a builder for deleting the given entity.
  1311. func (c *ContactClient) DeleteOne(co *Contact) *ContactDeleteOne {
  1312. return c.DeleteOneID(co.ID)
  1313. }
  1314. // DeleteOneID returns a builder for deleting the given entity by its id.
  1315. func (c *ContactClient) DeleteOneID(id uint64) *ContactDeleteOne {
  1316. builder := c.Delete().Where(contact.ID(id))
  1317. builder.mutation.id = &id
  1318. builder.mutation.op = OpDeleteOne
  1319. return &ContactDeleteOne{builder}
  1320. }
  1321. // Query returns a query builder for Contact.
  1322. func (c *ContactClient) Query() *ContactQuery {
  1323. return &ContactQuery{
  1324. config: c.config,
  1325. ctx: &QueryContext{Type: TypeContact},
  1326. inters: c.Interceptors(),
  1327. }
  1328. }
  1329. // Get returns a Contact entity by its id.
  1330. func (c *ContactClient) Get(ctx context.Context, id uint64) (*Contact, error) {
  1331. return c.Query().Where(contact.ID(id)).Only(ctx)
  1332. }
  1333. // GetX is like Get, but panics if an error occurs.
  1334. func (c *ContactClient) GetX(ctx context.Context, id uint64) *Contact {
  1335. obj, err := c.Get(ctx, id)
  1336. if err != nil {
  1337. panic(err)
  1338. }
  1339. return obj
  1340. }
  1341. // QueryContactRelationships queries the contact_relationships edge of a Contact.
  1342. func (c *ContactClient) QueryContactRelationships(co *Contact) *LabelRelationshipQuery {
  1343. query := (&LabelRelationshipClient{config: c.config}).Query()
  1344. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1345. id := co.ID
  1346. step := sqlgraph.NewStep(
  1347. sqlgraph.From(contact.Table, contact.FieldID, id),
  1348. sqlgraph.To(labelrelationship.Table, labelrelationship.FieldID),
  1349. sqlgraph.Edge(sqlgraph.O2M, false, contact.ContactRelationshipsTable, contact.ContactRelationshipsColumn),
  1350. )
  1351. fromV = sqlgraph.Neighbors(co.driver.Dialect(), step)
  1352. return fromV, nil
  1353. }
  1354. return query
  1355. }
  1356. // QueryContactMessages queries the contact_messages edge of a Contact.
  1357. func (c *ContactClient) QueryContactMessages(co *Contact) *MessageRecordsQuery {
  1358. query := (&MessageRecordsClient{config: c.config}).Query()
  1359. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1360. id := co.ID
  1361. step := sqlgraph.NewStep(
  1362. sqlgraph.From(contact.Table, contact.FieldID, id),
  1363. sqlgraph.To(messagerecords.Table, messagerecords.FieldID),
  1364. sqlgraph.Edge(sqlgraph.O2M, false, contact.ContactMessagesTable, contact.ContactMessagesColumn),
  1365. )
  1366. fromV = sqlgraph.Neighbors(co.driver.Dialect(), step)
  1367. return fromV, nil
  1368. }
  1369. return query
  1370. }
  1371. // Hooks returns the client hooks.
  1372. func (c *ContactClient) Hooks() []Hook {
  1373. hooks := c.hooks.Contact
  1374. return append(hooks[:len(hooks):len(hooks)], contact.Hooks[:]...)
  1375. }
  1376. // Interceptors returns the client interceptors.
  1377. func (c *ContactClient) Interceptors() []Interceptor {
  1378. inters := c.inters.Contact
  1379. return append(inters[:len(inters):len(inters)], contact.Interceptors[:]...)
  1380. }
  1381. func (c *ContactClient) mutate(ctx context.Context, m *ContactMutation) (Value, error) {
  1382. switch m.Op() {
  1383. case OpCreate:
  1384. return (&ContactCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1385. case OpUpdate:
  1386. return (&ContactUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1387. case OpUpdateOne:
  1388. return (&ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1389. case OpDelete, OpDeleteOne:
  1390. return (&ContactDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1391. default:
  1392. return nil, fmt.Errorf("ent: unknown Contact mutation op: %q", m.Op())
  1393. }
  1394. }
  1395. // EmployeeClient is a client for the Employee schema.
  1396. type EmployeeClient struct {
  1397. config
  1398. }
  1399. // NewEmployeeClient returns a client for the Employee from the given config.
  1400. func NewEmployeeClient(c config) *EmployeeClient {
  1401. return &EmployeeClient{config: c}
  1402. }
  1403. // Use adds a list of mutation hooks to the hooks stack.
  1404. // A call to `Use(f, g, h)` equals to `employee.Hooks(f(g(h())))`.
  1405. func (c *EmployeeClient) Use(hooks ...Hook) {
  1406. c.hooks.Employee = append(c.hooks.Employee, hooks...)
  1407. }
  1408. // Intercept adds a list of query interceptors to the interceptors stack.
  1409. // A call to `Intercept(f, g, h)` equals to `employee.Intercept(f(g(h())))`.
  1410. func (c *EmployeeClient) Intercept(interceptors ...Interceptor) {
  1411. c.inters.Employee = append(c.inters.Employee, interceptors...)
  1412. }
  1413. // Create returns a builder for creating a Employee entity.
  1414. func (c *EmployeeClient) Create() *EmployeeCreate {
  1415. mutation := newEmployeeMutation(c.config, OpCreate)
  1416. return &EmployeeCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1417. }
  1418. // CreateBulk returns a builder for creating a bulk of Employee entities.
  1419. func (c *EmployeeClient) CreateBulk(builders ...*EmployeeCreate) *EmployeeCreateBulk {
  1420. return &EmployeeCreateBulk{config: c.config, builders: builders}
  1421. }
  1422. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1423. // a builder and applies setFunc on it.
  1424. func (c *EmployeeClient) MapCreateBulk(slice any, setFunc func(*EmployeeCreate, int)) *EmployeeCreateBulk {
  1425. rv := reflect.ValueOf(slice)
  1426. if rv.Kind() != reflect.Slice {
  1427. return &EmployeeCreateBulk{err: fmt.Errorf("calling to EmployeeClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1428. }
  1429. builders := make([]*EmployeeCreate, rv.Len())
  1430. for i := 0; i < rv.Len(); i++ {
  1431. builders[i] = c.Create()
  1432. setFunc(builders[i], i)
  1433. }
  1434. return &EmployeeCreateBulk{config: c.config, builders: builders}
  1435. }
  1436. // Update returns an update builder for Employee.
  1437. func (c *EmployeeClient) Update() *EmployeeUpdate {
  1438. mutation := newEmployeeMutation(c.config, OpUpdate)
  1439. return &EmployeeUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1440. }
  1441. // UpdateOne returns an update builder for the given entity.
  1442. func (c *EmployeeClient) UpdateOne(e *Employee) *EmployeeUpdateOne {
  1443. mutation := newEmployeeMutation(c.config, OpUpdateOne, withEmployee(e))
  1444. return &EmployeeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1445. }
  1446. // UpdateOneID returns an update builder for the given id.
  1447. func (c *EmployeeClient) UpdateOneID(id uint64) *EmployeeUpdateOne {
  1448. mutation := newEmployeeMutation(c.config, OpUpdateOne, withEmployeeID(id))
  1449. return &EmployeeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1450. }
  1451. // Delete returns a delete builder for Employee.
  1452. func (c *EmployeeClient) Delete() *EmployeeDelete {
  1453. mutation := newEmployeeMutation(c.config, OpDelete)
  1454. return &EmployeeDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1455. }
  1456. // DeleteOne returns a builder for deleting the given entity.
  1457. func (c *EmployeeClient) DeleteOne(e *Employee) *EmployeeDeleteOne {
  1458. return c.DeleteOneID(e.ID)
  1459. }
  1460. // DeleteOneID returns a builder for deleting the given entity by its id.
  1461. func (c *EmployeeClient) DeleteOneID(id uint64) *EmployeeDeleteOne {
  1462. builder := c.Delete().Where(employee.ID(id))
  1463. builder.mutation.id = &id
  1464. builder.mutation.op = OpDeleteOne
  1465. return &EmployeeDeleteOne{builder}
  1466. }
  1467. // Query returns a query builder for Employee.
  1468. func (c *EmployeeClient) Query() *EmployeeQuery {
  1469. return &EmployeeQuery{
  1470. config: c.config,
  1471. ctx: &QueryContext{Type: TypeEmployee},
  1472. inters: c.Interceptors(),
  1473. }
  1474. }
  1475. // Get returns a Employee entity by its id.
  1476. func (c *EmployeeClient) Get(ctx context.Context, id uint64) (*Employee, error) {
  1477. return c.Query().Where(employee.ID(id)).Only(ctx)
  1478. }
  1479. // GetX is like Get, but panics if an error occurs.
  1480. func (c *EmployeeClient) GetX(ctx context.Context, id uint64) *Employee {
  1481. obj, err := c.Get(ctx, id)
  1482. if err != nil {
  1483. panic(err)
  1484. }
  1485. return obj
  1486. }
  1487. // QueryEmWorkExperiences queries the em_work_experiences edge of a Employee.
  1488. func (c *EmployeeClient) QueryEmWorkExperiences(e *Employee) *WorkExperienceQuery {
  1489. query := (&WorkExperienceClient{config: c.config}).Query()
  1490. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1491. id := e.ID
  1492. step := sqlgraph.NewStep(
  1493. sqlgraph.From(employee.Table, employee.FieldID, id),
  1494. sqlgraph.To(workexperience.Table, workexperience.FieldID),
  1495. sqlgraph.Edge(sqlgraph.O2M, false, employee.EmWorkExperiencesTable, employee.EmWorkExperiencesColumn),
  1496. )
  1497. fromV = sqlgraph.Neighbors(e.driver.Dialect(), step)
  1498. return fromV, nil
  1499. }
  1500. return query
  1501. }
  1502. // QueryEmTutorial queries the em_tutorial edge of a Employee.
  1503. func (c *EmployeeClient) QueryEmTutorial(e *Employee) *TutorialQuery {
  1504. query := (&TutorialClient{config: c.config}).Query()
  1505. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1506. id := e.ID
  1507. step := sqlgraph.NewStep(
  1508. sqlgraph.From(employee.Table, employee.FieldID, id),
  1509. sqlgraph.To(tutorial.Table, tutorial.FieldID),
  1510. sqlgraph.Edge(sqlgraph.O2M, false, employee.EmTutorialTable, employee.EmTutorialColumn),
  1511. )
  1512. fromV = sqlgraph.Neighbors(e.driver.Dialect(), step)
  1513. return fromV, nil
  1514. }
  1515. return query
  1516. }
  1517. // Hooks returns the client hooks.
  1518. func (c *EmployeeClient) Hooks() []Hook {
  1519. hooks := c.hooks.Employee
  1520. return append(hooks[:len(hooks):len(hooks)], employee.Hooks[:]...)
  1521. }
  1522. // Interceptors returns the client interceptors.
  1523. func (c *EmployeeClient) Interceptors() []Interceptor {
  1524. inters := c.inters.Employee
  1525. return append(inters[:len(inters):len(inters)], employee.Interceptors[:]...)
  1526. }
  1527. func (c *EmployeeClient) mutate(ctx context.Context, m *EmployeeMutation) (Value, error) {
  1528. switch m.Op() {
  1529. case OpCreate:
  1530. return (&EmployeeCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1531. case OpUpdate:
  1532. return (&EmployeeUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1533. case OpUpdateOne:
  1534. return (&EmployeeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1535. case OpDelete, OpDeleteOne:
  1536. return (&EmployeeDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1537. default:
  1538. return nil, fmt.Errorf("ent: unknown Employee mutation op: %q", m.Op())
  1539. }
  1540. }
  1541. // EmployeeConfigClient is a client for the EmployeeConfig schema.
  1542. type EmployeeConfigClient struct {
  1543. config
  1544. }
  1545. // NewEmployeeConfigClient returns a client for the EmployeeConfig from the given config.
  1546. func NewEmployeeConfigClient(c config) *EmployeeConfigClient {
  1547. return &EmployeeConfigClient{config: c}
  1548. }
  1549. // Use adds a list of mutation hooks to the hooks stack.
  1550. // A call to `Use(f, g, h)` equals to `employeeconfig.Hooks(f(g(h())))`.
  1551. func (c *EmployeeConfigClient) Use(hooks ...Hook) {
  1552. c.hooks.EmployeeConfig = append(c.hooks.EmployeeConfig, hooks...)
  1553. }
  1554. // Intercept adds a list of query interceptors to the interceptors stack.
  1555. // A call to `Intercept(f, g, h)` equals to `employeeconfig.Intercept(f(g(h())))`.
  1556. func (c *EmployeeConfigClient) Intercept(interceptors ...Interceptor) {
  1557. c.inters.EmployeeConfig = append(c.inters.EmployeeConfig, interceptors...)
  1558. }
  1559. // Create returns a builder for creating a EmployeeConfig entity.
  1560. func (c *EmployeeConfigClient) Create() *EmployeeConfigCreate {
  1561. mutation := newEmployeeConfigMutation(c.config, OpCreate)
  1562. return &EmployeeConfigCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1563. }
  1564. // CreateBulk returns a builder for creating a bulk of EmployeeConfig entities.
  1565. func (c *EmployeeConfigClient) CreateBulk(builders ...*EmployeeConfigCreate) *EmployeeConfigCreateBulk {
  1566. return &EmployeeConfigCreateBulk{config: c.config, builders: builders}
  1567. }
  1568. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1569. // a builder and applies setFunc on it.
  1570. func (c *EmployeeConfigClient) MapCreateBulk(slice any, setFunc func(*EmployeeConfigCreate, int)) *EmployeeConfigCreateBulk {
  1571. rv := reflect.ValueOf(slice)
  1572. if rv.Kind() != reflect.Slice {
  1573. return &EmployeeConfigCreateBulk{err: fmt.Errorf("calling to EmployeeConfigClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1574. }
  1575. builders := make([]*EmployeeConfigCreate, rv.Len())
  1576. for i := 0; i < rv.Len(); i++ {
  1577. builders[i] = c.Create()
  1578. setFunc(builders[i], i)
  1579. }
  1580. return &EmployeeConfigCreateBulk{config: c.config, builders: builders}
  1581. }
  1582. // Update returns an update builder for EmployeeConfig.
  1583. func (c *EmployeeConfigClient) Update() *EmployeeConfigUpdate {
  1584. mutation := newEmployeeConfigMutation(c.config, OpUpdate)
  1585. return &EmployeeConfigUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1586. }
  1587. // UpdateOne returns an update builder for the given entity.
  1588. func (c *EmployeeConfigClient) UpdateOne(ec *EmployeeConfig) *EmployeeConfigUpdateOne {
  1589. mutation := newEmployeeConfigMutation(c.config, OpUpdateOne, withEmployeeConfig(ec))
  1590. return &EmployeeConfigUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1591. }
  1592. // UpdateOneID returns an update builder for the given id.
  1593. func (c *EmployeeConfigClient) UpdateOneID(id uint64) *EmployeeConfigUpdateOne {
  1594. mutation := newEmployeeConfigMutation(c.config, OpUpdateOne, withEmployeeConfigID(id))
  1595. return &EmployeeConfigUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1596. }
  1597. // Delete returns a delete builder for EmployeeConfig.
  1598. func (c *EmployeeConfigClient) Delete() *EmployeeConfigDelete {
  1599. mutation := newEmployeeConfigMutation(c.config, OpDelete)
  1600. return &EmployeeConfigDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1601. }
  1602. // DeleteOne returns a builder for deleting the given entity.
  1603. func (c *EmployeeConfigClient) DeleteOne(ec *EmployeeConfig) *EmployeeConfigDeleteOne {
  1604. return c.DeleteOneID(ec.ID)
  1605. }
  1606. // DeleteOneID returns a builder for deleting the given entity by its id.
  1607. func (c *EmployeeConfigClient) DeleteOneID(id uint64) *EmployeeConfigDeleteOne {
  1608. builder := c.Delete().Where(employeeconfig.ID(id))
  1609. builder.mutation.id = &id
  1610. builder.mutation.op = OpDeleteOne
  1611. return &EmployeeConfigDeleteOne{builder}
  1612. }
  1613. // Query returns a query builder for EmployeeConfig.
  1614. func (c *EmployeeConfigClient) Query() *EmployeeConfigQuery {
  1615. return &EmployeeConfigQuery{
  1616. config: c.config,
  1617. ctx: &QueryContext{Type: TypeEmployeeConfig},
  1618. inters: c.Interceptors(),
  1619. }
  1620. }
  1621. // Get returns a EmployeeConfig entity by its id.
  1622. func (c *EmployeeConfigClient) Get(ctx context.Context, id uint64) (*EmployeeConfig, error) {
  1623. return c.Query().Where(employeeconfig.ID(id)).Only(ctx)
  1624. }
  1625. // GetX is like Get, but panics if an error occurs.
  1626. func (c *EmployeeConfigClient) GetX(ctx context.Context, id uint64) *EmployeeConfig {
  1627. obj, err := c.Get(ctx, id)
  1628. if err != nil {
  1629. panic(err)
  1630. }
  1631. return obj
  1632. }
  1633. // Hooks returns the client hooks.
  1634. func (c *EmployeeConfigClient) Hooks() []Hook {
  1635. hooks := c.hooks.EmployeeConfig
  1636. return append(hooks[:len(hooks):len(hooks)], employeeconfig.Hooks[:]...)
  1637. }
  1638. // Interceptors returns the client interceptors.
  1639. func (c *EmployeeConfigClient) Interceptors() []Interceptor {
  1640. inters := c.inters.EmployeeConfig
  1641. return append(inters[:len(inters):len(inters)], employeeconfig.Interceptors[:]...)
  1642. }
  1643. func (c *EmployeeConfigClient) mutate(ctx context.Context, m *EmployeeConfigMutation) (Value, error) {
  1644. switch m.Op() {
  1645. case OpCreate:
  1646. return (&EmployeeConfigCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1647. case OpUpdate:
  1648. return (&EmployeeConfigUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1649. case OpUpdateOne:
  1650. return (&EmployeeConfigUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1651. case OpDelete, OpDeleteOne:
  1652. return (&EmployeeConfigDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1653. default:
  1654. return nil, fmt.Errorf("ent: unknown EmployeeConfig mutation op: %q", m.Op())
  1655. }
  1656. }
  1657. // LabelClient is a client for the Label schema.
  1658. type LabelClient struct {
  1659. config
  1660. }
  1661. // NewLabelClient returns a client for the Label from the given config.
  1662. func NewLabelClient(c config) *LabelClient {
  1663. return &LabelClient{config: c}
  1664. }
  1665. // Use adds a list of mutation hooks to the hooks stack.
  1666. // A call to `Use(f, g, h)` equals to `label.Hooks(f(g(h())))`.
  1667. func (c *LabelClient) Use(hooks ...Hook) {
  1668. c.hooks.Label = append(c.hooks.Label, hooks...)
  1669. }
  1670. // Intercept adds a list of query interceptors to the interceptors stack.
  1671. // A call to `Intercept(f, g, h)` equals to `label.Intercept(f(g(h())))`.
  1672. func (c *LabelClient) Intercept(interceptors ...Interceptor) {
  1673. c.inters.Label = append(c.inters.Label, interceptors...)
  1674. }
  1675. // Create returns a builder for creating a Label entity.
  1676. func (c *LabelClient) Create() *LabelCreate {
  1677. mutation := newLabelMutation(c.config, OpCreate)
  1678. return &LabelCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1679. }
  1680. // CreateBulk returns a builder for creating a bulk of Label entities.
  1681. func (c *LabelClient) CreateBulk(builders ...*LabelCreate) *LabelCreateBulk {
  1682. return &LabelCreateBulk{config: c.config, builders: builders}
  1683. }
  1684. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1685. // a builder and applies setFunc on it.
  1686. func (c *LabelClient) MapCreateBulk(slice any, setFunc func(*LabelCreate, int)) *LabelCreateBulk {
  1687. rv := reflect.ValueOf(slice)
  1688. if rv.Kind() != reflect.Slice {
  1689. return &LabelCreateBulk{err: fmt.Errorf("calling to LabelClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1690. }
  1691. builders := make([]*LabelCreate, rv.Len())
  1692. for i := 0; i < rv.Len(); i++ {
  1693. builders[i] = c.Create()
  1694. setFunc(builders[i], i)
  1695. }
  1696. return &LabelCreateBulk{config: c.config, builders: builders}
  1697. }
  1698. // Update returns an update builder for Label.
  1699. func (c *LabelClient) Update() *LabelUpdate {
  1700. mutation := newLabelMutation(c.config, OpUpdate)
  1701. return &LabelUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1702. }
  1703. // UpdateOne returns an update builder for the given entity.
  1704. func (c *LabelClient) UpdateOne(l *Label) *LabelUpdateOne {
  1705. mutation := newLabelMutation(c.config, OpUpdateOne, withLabel(l))
  1706. return &LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1707. }
  1708. // UpdateOneID returns an update builder for the given id.
  1709. func (c *LabelClient) UpdateOneID(id uint64) *LabelUpdateOne {
  1710. mutation := newLabelMutation(c.config, OpUpdateOne, withLabelID(id))
  1711. return &LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1712. }
  1713. // Delete returns a delete builder for Label.
  1714. func (c *LabelClient) Delete() *LabelDelete {
  1715. mutation := newLabelMutation(c.config, OpDelete)
  1716. return &LabelDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1717. }
  1718. // DeleteOne returns a builder for deleting the given entity.
  1719. func (c *LabelClient) DeleteOne(l *Label) *LabelDeleteOne {
  1720. return c.DeleteOneID(l.ID)
  1721. }
  1722. // DeleteOneID returns a builder for deleting the given entity by its id.
  1723. func (c *LabelClient) DeleteOneID(id uint64) *LabelDeleteOne {
  1724. builder := c.Delete().Where(label.ID(id))
  1725. builder.mutation.id = &id
  1726. builder.mutation.op = OpDeleteOne
  1727. return &LabelDeleteOne{builder}
  1728. }
  1729. // Query returns a query builder for Label.
  1730. func (c *LabelClient) Query() *LabelQuery {
  1731. return &LabelQuery{
  1732. config: c.config,
  1733. ctx: &QueryContext{Type: TypeLabel},
  1734. inters: c.Interceptors(),
  1735. }
  1736. }
  1737. // Get returns a Label entity by its id.
  1738. func (c *LabelClient) Get(ctx context.Context, id uint64) (*Label, error) {
  1739. return c.Query().Where(label.ID(id)).Only(ctx)
  1740. }
  1741. // GetX is like Get, but panics if an error occurs.
  1742. func (c *LabelClient) GetX(ctx context.Context, id uint64) *Label {
  1743. obj, err := c.Get(ctx, id)
  1744. if err != nil {
  1745. panic(err)
  1746. }
  1747. return obj
  1748. }
  1749. // QueryLabelRelationships queries the label_relationships edge of a Label.
  1750. func (c *LabelClient) QueryLabelRelationships(l *Label) *LabelRelationshipQuery {
  1751. query := (&LabelRelationshipClient{config: c.config}).Query()
  1752. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1753. id := l.ID
  1754. step := sqlgraph.NewStep(
  1755. sqlgraph.From(label.Table, label.FieldID, id),
  1756. sqlgraph.To(labelrelationship.Table, labelrelationship.FieldID),
  1757. sqlgraph.Edge(sqlgraph.O2M, false, label.LabelRelationshipsTable, label.LabelRelationshipsColumn),
  1758. )
  1759. fromV = sqlgraph.Neighbors(l.driver.Dialect(), step)
  1760. return fromV, nil
  1761. }
  1762. return query
  1763. }
  1764. // Hooks returns the client hooks.
  1765. func (c *LabelClient) Hooks() []Hook {
  1766. return c.hooks.Label
  1767. }
  1768. // Interceptors returns the client interceptors.
  1769. func (c *LabelClient) Interceptors() []Interceptor {
  1770. return c.inters.Label
  1771. }
  1772. func (c *LabelClient) mutate(ctx context.Context, m *LabelMutation) (Value, error) {
  1773. switch m.Op() {
  1774. case OpCreate:
  1775. return (&LabelCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1776. case OpUpdate:
  1777. return (&LabelUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1778. case OpUpdateOne:
  1779. return (&LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1780. case OpDelete, OpDeleteOne:
  1781. return (&LabelDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1782. default:
  1783. return nil, fmt.Errorf("ent: unknown Label mutation op: %q", m.Op())
  1784. }
  1785. }
  1786. // LabelRelationshipClient is a client for the LabelRelationship schema.
  1787. type LabelRelationshipClient struct {
  1788. config
  1789. }
  1790. // NewLabelRelationshipClient returns a client for the LabelRelationship from the given config.
  1791. func NewLabelRelationshipClient(c config) *LabelRelationshipClient {
  1792. return &LabelRelationshipClient{config: c}
  1793. }
  1794. // Use adds a list of mutation hooks to the hooks stack.
  1795. // A call to `Use(f, g, h)` equals to `labelrelationship.Hooks(f(g(h())))`.
  1796. func (c *LabelRelationshipClient) Use(hooks ...Hook) {
  1797. c.hooks.LabelRelationship = append(c.hooks.LabelRelationship, hooks...)
  1798. }
  1799. // Intercept adds a list of query interceptors to the interceptors stack.
  1800. // A call to `Intercept(f, g, h)` equals to `labelrelationship.Intercept(f(g(h())))`.
  1801. func (c *LabelRelationshipClient) Intercept(interceptors ...Interceptor) {
  1802. c.inters.LabelRelationship = append(c.inters.LabelRelationship, interceptors...)
  1803. }
  1804. // Create returns a builder for creating a LabelRelationship entity.
  1805. func (c *LabelRelationshipClient) Create() *LabelRelationshipCreate {
  1806. mutation := newLabelRelationshipMutation(c.config, OpCreate)
  1807. return &LabelRelationshipCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1808. }
  1809. // CreateBulk returns a builder for creating a bulk of LabelRelationship entities.
  1810. func (c *LabelRelationshipClient) CreateBulk(builders ...*LabelRelationshipCreate) *LabelRelationshipCreateBulk {
  1811. return &LabelRelationshipCreateBulk{config: c.config, builders: builders}
  1812. }
  1813. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1814. // a builder and applies setFunc on it.
  1815. func (c *LabelRelationshipClient) MapCreateBulk(slice any, setFunc func(*LabelRelationshipCreate, int)) *LabelRelationshipCreateBulk {
  1816. rv := reflect.ValueOf(slice)
  1817. if rv.Kind() != reflect.Slice {
  1818. return &LabelRelationshipCreateBulk{err: fmt.Errorf("calling to LabelRelationshipClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1819. }
  1820. builders := make([]*LabelRelationshipCreate, rv.Len())
  1821. for i := 0; i < rv.Len(); i++ {
  1822. builders[i] = c.Create()
  1823. setFunc(builders[i], i)
  1824. }
  1825. return &LabelRelationshipCreateBulk{config: c.config, builders: builders}
  1826. }
  1827. // Update returns an update builder for LabelRelationship.
  1828. func (c *LabelRelationshipClient) Update() *LabelRelationshipUpdate {
  1829. mutation := newLabelRelationshipMutation(c.config, OpUpdate)
  1830. return &LabelRelationshipUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1831. }
  1832. // UpdateOne returns an update builder for the given entity.
  1833. func (c *LabelRelationshipClient) UpdateOne(lr *LabelRelationship) *LabelRelationshipUpdateOne {
  1834. mutation := newLabelRelationshipMutation(c.config, OpUpdateOne, withLabelRelationship(lr))
  1835. return &LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1836. }
  1837. // UpdateOneID returns an update builder for the given id.
  1838. func (c *LabelRelationshipClient) UpdateOneID(id uint64) *LabelRelationshipUpdateOne {
  1839. mutation := newLabelRelationshipMutation(c.config, OpUpdateOne, withLabelRelationshipID(id))
  1840. return &LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1841. }
  1842. // Delete returns a delete builder for LabelRelationship.
  1843. func (c *LabelRelationshipClient) Delete() *LabelRelationshipDelete {
  1844. mutation := newLabelRelationshipMutation(c.config, OpDelete)
  1845. return &LabelRelationshipDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1846. }
  1847. // DeleteOne returns a builder for deleting the given entity.
  1848. func (c *LabelRelationshipClient) DeleteOne(lr *LabelRelationship) *LabelRelationshipDeleteOne {
  1849. return c.DeleteOneID(lr.ID)
  1850. }
  1851. // DeleteOneID returns a builder for deleting the given entity by its id.
  1852. func (c *LabelRelationshipClient) DeleteOneID(id uint64) *LabelRelationshipDeleteOne {
  1853. builder := c.Delete().Where(labelrelationship.ID(id))
  1854. builder.mutation.id = &id
  1855. builder.mutation.op = OpDeleteOne
  1856. return &LabelRelationshipDeleteOne{builder}
  1857. }
  1858. // Query returns a query builder for LabelRelationship.
  1859. func (c *LabelRelationshipClient) Query() *LabelRelationshipQuery {
  1860. return &LabelRelationshipQuery{
  1861. config: c.config,
  1862. ctx: &QueryContext{Type: TypeLabelRelationship},
  1863. inters: c.Interceptors(),
  1864. }
  1865. }
  1866. // Get returns a LabelRelationship entity by its id.
  1867. func (c *LabelRelationshipClient) Get(ctx context.Context, id uint64) (*LabelRelationship, error) {
  1868. return c.Query().Where(labelrelationship.ID(id)).Only(ctx)
  1869. }
  1870. // GetX is like Get, but panics if an error occurs.
  1871. func (c *LabelRelationshipClient) GetX(ctx context.Context, id uint64) *LabelRelationship {
  1872. obj, err := c.Get(ctx, id)
  1873. if err != nil {
  1874. panic(err)
  1875. }
  1876. return obj
  1877. }
  1878. // QueryContacts queries the contacts edge of a LabelRelationship.
  1879. func (c *LabelRelationshipClient) QueryContacts(lr *LabelRelationship) *ContactQuery {
  1880. query := (&ContactClient{config: c.config}).Query()
  1881. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1882. id := lr.ID
  1883. step := sqlgraph.NewStep(
  1884. sqlgraph.From(labelrelationship.Table, labelrelationship.FieldID, id),
  1885. sqlgraph.To(contact.Table, contact.FieldID),
  1886. sqlgraph.Edge(sqlgraph.M2O, true, labelrelationship.ContactsTable, labelrelationship.ContactsColumn),
  1887. )
  1888. fromV = sqlgraph.Neighbors(lr.driver.Dialect(), step)
  1889. return fromV, nil
  1890. }
  1891. return query
  1892. }
  1893. // QueryLabels queries the labels edge of a LabelRelationship.
  1894. func (c *LabelRelationshipClient) QueryLabels(lr *LabelRelationship) *LabelQuery {
  1895. query := (&LabelClient{config: c.config}).Query()
  1896. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1897. id := lr.ID
  1898. step := sqlgraph.NewStep(
  1899. sqlgraph.From(labelrelationship.Table, labelrelationship.FieldID, id),
  1900. sqlgraph.To(label.Table, label.FieldID),
  1901. sqlgraph.Edge(sqlgraph.M2O, true, labelrelationship.LabelsTable, labelrelationship.LabelsColumn),
  1902. )
  1903. fromV = sqlgraph.Neighbors(lr.driver.Dialect(), step)
  1904. return fromV, nil
  1905. }
  1906. return query
  1907. }
  1908. // Hooks returns the client hooks.
  1909. func (c *LabelRelationshipClient) Hooks() []Hook {
  1910. hooks := c.hooks.LabelRelationship
  1911. return append(hooks[:len(hooks):len(hooks)], labelrelationship.Hooks[:]...)
  1912. }
  1913. // Interceptors returns the client interceptors.
  1914. func (c *LabelRelationshipClient) Interceptors() []Interceptor {
  1915. inters := c.inters.LabelRelationship
  1916. return append(inters[:len(inters):len(inters)], labelrelationship.Interceptors[:]...)
  1917. }
  1918. func (c *LabelRelationshipClient) mutate(ctx context.Context, m *LabelRelationshipMutation) (Value, error) {
  1919. switch m.Op() {
  1920. case OpCreate:
  1921. return (&LabelRelationshipCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1922. case OpUpdate:
  1923. return (&LabelRelationshipUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1924. case OpUpdateOne:
  1925. return (&LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1926. case OpDelete, OpDeleteOne:
  1927. return (&LabelRelationshipDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1928. default:
  1929. return nil, fmt.Errorf("ent: unknown LabelRelationship mutation op: %q", m.Op())
  1930. }
  1931. }
  1932. // MessageClient is a client for the Message schema.
  1933. type MessageClient struct {
  1934. config
  1935. }
  1936. // NewMessageClient returns a client for the Message from the given config.
  1937. func NewMessageClient(c config) *MessageClient {
  1938. return &MessageClient{config: c}
  1939. }
  1940. // Use adds a list of mutation hooks to the hooks stack.
  1941. // A call to `Use(f, g, h)` equals to `message.Hooks(f(g(h())))`.
  1942. func (c *MessageClient) Use(hooks ...Hook) {
  1943. c.hooks.Message = append(c.hooks.Message, hooks...)
  1944. }
  1945. // Intercept adds a list of query interceptors to the interceptors stack.
  1946. // A call to `Intercept(f, g, h)` equals to `message.Intercept(f(g(h())))`.
  1947. func (c *MessageClient) Intercept(interceptors ...Interceptor) {
  1948. c.inters.Message = append(c.inters.Message, interceptors...)
  1949. }
  1950. // Create returns a builder for creating a Message entity.
  1951. func (c *MessageClient) Create() *MessageCreate {
  1952. mutation := newMessageMutation(c.config, OpCreate)
  1953. return &MessageCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1954. }
  1955. // CreateBulk returns a builder for creating a bulk of Message entities.
  1956. func (c *MessageClient) CreateBulk(builders ...*MessageCreate) *MessageCreateBulk {
  1957. return &MessageCreateBulk{config: c.config, builders: builders}
  1958. }
  1959. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1960. // a builder and applies setFunc on it.
  1961. func (c *MessageClient) MapCreateBulk(slice any, setFunc func(*MessageCreate, int)) *MessageCreateBulk {
  1962. rv := reflect.ValueOf(slice)
  1963. if rv.Kind() != reflect.Slice {
  1964. return &MessageCreateBulk{err: fmt.Errorf("calling to MessageClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1965. }
  1966. builders := make([]*MessageCreate, rv.Len())
  1967. for i := 0; i < rv.Len(); i++ {
  1968. builders[i] = c.Create()
  1969. setFunc(builders[i], i)
  1970. }
  1971. return &MessageCreateBulk{config: c.config, builders: builders}
  1972. }
  1973. // Update returns an update builder for Message.
  1974. func (c *MessageClient) Update() *MessageUpdate {
  1975. mutation := newMessageMutation(c.config, OpUpdate)
  1976. return &MessageUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1977. }
  1978. // UpdateOne returns an update builder for the given entity.
  1979. func (c *MessageClient) UpdateOne(m *Message) *MessageUpdateOne {
  1980. mutation := newMessageMutation(c.config, OpUpdateOne, withMessage(m))
  1981. return &MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1982. }
  1983. // UpdateOneID returns an update builder for the given id.
  1984. func (c *MessageClient) UpdateOneID(id int) *MessageUpdateOne {
  1985. mutation := newMessageMutation(c.config, OpUpdateOne, withMessageID(id))
  1986. return &MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1987. }
  1988. // Delete returns a delete builder for Message.
  1989. func (c *MessageClient) Delete() *MessageDelete {
  1990. mutation := newMessageMutation(c.config, OpDelete)
  1991. return &MessageDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1992. }
  1993. // DeleteOne returns a builder for deleting the given entity.
  1994. func (c *MessageClient) DeleteOne(m *Message) *MessageDeleteOne {
  1995. return c.DeleteOneID(m.ID)
  1996. }
  1997. // DeleteOneID returns a builder for deleting the given entity by its id.
  1998. func (c *MessageClient) DeleteOneID(id int) *MessageDeleteOne {
  1999. builder := c.Delete().Where(message.ID(id))
  2000. builder.mutation.id = &id
  2001. builder.mutation.op = OpDeleteOne
  2002. return &MessageDeleteOne{builder}
  2003. }
  2004. // Query returns a query builder for Message.
  2005. func (c *MessageClient) Query() *MessageQuery {
  2006. return &MessageQuery{
  2007. config: c.config,
  2008. ctx: &QueryContext{Type: TypeMessage},
  2009. inters: c.Interceptors(),
  2010. }
  2011. }
  2012. // Get returns a Message entity by its id.
  2013. func (c *MessageClient) Get(ctx context.Context, id int) (*Message, error) {
  2014. return c.Query().Where(message.ID(id)).Only(ctx)
  2015. }
  2016. // GetX is like Get, but panics if an error occurs.
  2017. func (c *MessageClient) GetX(ctx context.Context, id int) *Message {
  2018. obj, err := c.Get(ctx, id)
  2019. if err != nil {
  2020. panic(err)
  2021. }
  2022. return obj
  2023. }
  2024. // Hooks returns the client hooks.
  2025. func (c *MessageClient) Hooks() []Hook {
  2026. return c.hooks.Message
  2027. }
  2028. // Interceptors returns the client interceptors.
  2029. func (c *MessageClient) Interceptors() []Interceptor {
  2030. return c.inters.Message
  2031. }
  2032. func (c *MessageClient) mutate(ctx context.Context, m *MessageMutation) (Value, error) {
  2033. switch m.Op() {
  2034. case OpCreate:
  2035. return (&MessageCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2036. case OpUpdate:
  2037. return (&MessageUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2038. case OpUpdateOne:
  2039. return (&MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2040. case OpDelete, OpDeleteOne:
  2041. return (&MessageDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2042. default:
  2043. return nil, fmt.Errorf("ent: unknown Message mutation op: %q", m.Op())
  2044. }
  2045. }
  2046. // MessageRecordsClient is a client for the MessageRecords schema.
  2047. type MessageRecordsClient struct {
  2048. config
  2049. }
  2050. // NewMessageRecordsClient returns a client for the MessageRecords from the given config.
  2051. func NewMessageRecordsClient(c config) *MessageRecordsClient {
  2052. return &MessageRecordsClient{config: c}
  2053. }
  2054. // Use adds a list of mutation hooks to the hooks stack.
  2055. // A call to `Use(f, g, h)` equals to `messagerecords.Hooks(f(g(h())))`.
  2056. func (c *MessageRecordsClient) Use(hooks ...Hook) {
  2057. c.hooks.MessageRecords = append(c.hooks.MessageRecords, hooks...)
  2058. }
  2059. // Intercept adds a list of query interceptors to the interceptors stack.
  2060. // A call to `Intercept(f, g, h)` equals to `messagerecords.Intercept(f(g(h())))`.
  2061. func (c *MessageRecordsClient) Intercept(interceptors ...Interceptor) {
  2062. c.inters.MessageRecords = append(c.inters.MessageRecords, interceptors...)
  2063. }
  2064. // Create returns a builder for creating a MessageRecords entity.
  2065. func (c *MessageRecordsClient) Create() *MessageRecordsCreate {
  2066. mutation := newMessageRecordsMutation(c.config, OpCreate)
  2067. return &MessageRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2068. }
  2069. // CreateBulk returns a builder for creating a bulk of MessageRecords entities.
  2070. func (c *MessageRecordsClient) CreateBulk(builders ...*MessageRecordsCreate) *MessageRecordsCreateBulk {
  2071. return &MessageRecordsCreateBulk{config: c.config, builders: builders}
  2072. }
  2073. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2074. // a builder and applies setFunc on it.
  2075. func (c *MessageRecordsClient) MapCreateBulk(slice any, setFunc func(*MessageRecordsCreate, int)) *MessageRecordsCreateBulk {
  2076. rv := reflect.ValueOf(slice)
  2077. if rv.Kind() != reflect.Slice {
  2078. return &MessageRecordsCreateBulk{err: fmt.Errorf("calling to MessageRecordsClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2079. }
  2080. builders := make([]*MessageRecordsCreate, rv.Len())
  2081. for i := 0; i < rv.Len(); i++ {
  2082. builders[i] = c.Create()
  2083. setFunc(builders[i], i)
  2084. }
  2085. return &MessageRecordsCreateBulk{config: c.config, builders: builders}
  2086. }
  2087. // Update returns an update builder for MessageRecords.
  2088. func (c *MessageRecordsClient) Update() *MessageRecordsUpdate {
  2089. mutation := newMessageRecordsMutation(c.config, OpUpdate)
  2090. return &MessageRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2091. }
  2092. // UpdateOne returns an update builder for the given entity.
  2093. func (c *MessageRecordsClient) UpdateOne(mr *MessageRecords) *MessageRecordsUpdateOne {
  2094. mutation := newMessageRecordsMutation(c.config, OpUpdateOne, withMessageRecords(mr))
  2095. return &MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2096. }
  2097. // UpdateOneID returns an update builder for the given id.
  2098. func (c *MessageRecordsClient) UpdateOneID(id uint64) *MessageRecordsUpdateOne {
  2099. mutation := newMessageRecordsMutation(c.config, OpUpdateOne, withMessageRecordsID(id))
  2100. return &MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2101. }
  2102. // Delete returns a delete builder for MessageRecords.
  2103. func (c *MessageRecordsClient) Delete() *MessageRecordsDelete {
  2104. mutation := newMessageRecordsMutation(c.config, OpDelete)
  2105. return &MessageRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2106. }
  2107. // DeleteOne returns a builder for deleting the given entity.
  2108. func (c *MessageRecordsClient) DeleteOne(mr *MessageRecords) *MessageRecordsDeleteOne {
  2109. return c.DeleteOneID(mr.ID)
  2110. }
  2111. // DeleteOneID returns a builder for deleting the given entity by its id.
  2112. func (c *MessageRecordsClient) DeleteOneID(id uint64) *MessageRecordsDeleteOne {
  2113. builder := c.Delete().Where(messagerecords.ID(id))
  2114. builder.mutation.id = &id
  2115. builder.mutation.op = OpDeleteOne
  2116. return &MessageRecordsDeleteOne{builder}
  2117. }
  2118. // Query returns a query builder for MessageRecords.
  2119. func (c *MessageRecordsClient) Query() *MessageRecordsQuery {
  2120. return &MessageRecordsQuery{
  2121. config: c.config,
  2122. ctx: &QueryContext{Type: TypeMessageRecords},
  2123. inters: c.Interceptors(),
  2124. }
  2125. }
  2126. // Get returns a MessageRecords entity by its id.
  2127. func (c *MessageRecordsClient) Get(ctx context.Context, id uint64) (*MessageRecords, error) {
  2128. return c.Query().Where(messagerecords.ID(id)).Only(ctx)
  2129. }
  2130. // GetX is like Get, but panics if an error occurs.
  2131. func (c *MessageRecordsClient) GetX(ctx context.Context, id uint64) *MessageRecords {
  2132. obj, err := c.Get(ctx, id)
  2133. if err != nil {
  2134. panic(err)
  2135. }
  2136. return obj
  2137. }
  2138. // QuerySopStage queries the sop_stage edge of a MessageRecords.
  2139. func (c *MessageRecordsClient) QuerySopStage(mr *MessageRecords) *SopStageQuery {
  2140. query := (&SopStageClient{config: c.config}).Query()
  2141. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2142. id := mr.ID
  2143. step := sqlgraph.NewStep(
  2144. sqlgraph.From(messagerecords.Table, messagerecords.FieldID, id),
  2145. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  2146. sqlgraph.Edge(sqlgraph.M2O, true, messagerecords.SopStageTable, messagerecords.SopStageColumn),
  2147. )
  2148. fromV = sqlgraph.Neighbors(mr.driver.Dialect(), step)
  2149. return fromV, nil
  2150. }
  2151. return query
  2152. }
  2153. // QuerySopNode queries the sop_node edge of a MessageRecords.
  2154. func (c *MessageRecordsClient) QuerySopNode(mr *MessageRecords) *SopNodeQuery {
  2155. query := (&SopNodeClient{config: c.config}).Query()
  2156. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2157. id := mr.ID
  2158. step := sqlgraph.NewStep(
  2159. sqlgraph.From(messagerecords.Table, messagerecords.FieldID, id),
  2160. sqlgraph.To(sopnode.Table, sopnode.FieldID),
  2161. sqlgraph.Edge(sqlgraph.M2O, true, messagerecords.SopNodeTable, messagerecords.SopNodeColumn),
  2162. )
  2163. fromV = sqlgraph.Neighbors(mr.driver.Dialect(), step)
  2164. return fromV, nil
  2165. }
  2166. return query
  2167. }
  2168. // QueryMessageContact queries the message_contact edge of a MessageRecords.
  2169. func (c *MessageRecordsClient) QueryMessageContact(mr *MessageRecords) *ContactQuery {
  2170. query := (&ContactClient{config: c.config}).Query()
  2171. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2172. id := mr.ID
  2173. step := sqlgraph.NewStep(
  2174. sqlgraph.From(messagerecords.Table, messagerecords.FieldID, id),
  2175. sqlgraph.To(contact.Table, contact.FieldID),
  2176. sqlgraph.Edge(sqlgraph.M2O, true, messagerecords.MessageContactTable, messagerecords.MessageContactColumn),
  2177. )
  2178. fromV = sqlgraph.Neighbors(mr.driver.Dialect(), step)
  2179. return fromV, nil
  2180. }
  2181. return query
  2182. }
  2183. // Hooks returns the client hooks.
  2184. func (c *MessageRecordsClient) Hooks() []Hook {
  2185. return c.hooks.MessageRecords
  2186. }
  2187. // Interceptors returns the client interceptors.
  2188. func (c *MessageRecordsClient) Interceptors() []Interceptor {
  2189. return c.inters.MessageRecords
  2190. }
  2191. func (c *MessageRecordsClient) mutate(ctx context.Context, m *MessageRecordsMutation) (Value, error) {
  2192. switch m.Op() {
  2193. case OpCreate:
  2194. return (&MessageRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2195. case OpUpdate:
  2196. return (&MessageRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2197. case OpUpdateOne:
  2198. return (&MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2199. case OpDelete, OpDeleteOne:
  2200. return (&MessageRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2201. default:
  2202. return nil, fmt.Errorf("ent: unknown MessageRecords mutation op: %q", m.Op())
  2203. }
  2204. }
  2205. // MsgClient is a client for the Msg schema.
  2206. type MsgClient struct {
  2207. config
  2208. }
  2209. // NewMsgClient returns a client for the Msg from the given config.
  2210. func NewMsgClient(c config) *MsgClient {
  2211. return &MsgClient{config: c}
  2212. }
  2213. // Use adds a list of mutation hooks to the hooks stack.
  2214. // A call to `Use(f, g, h)` equals to `msg.Hooks(f(g(h())))`.
  2215. func (c *MsgClient) Use(hooks ...Hook) {
  2216. c.hooks.Msg = append(c.hooks.Msg, hooks...)
  2217. }
  2218. // Intercept adds a list of query interceptors to the interceptors stack.
  2219. // A call to `Intercept(f, g, h)` equals to `msg.Intercept(f(g(h())))`.
  2220. func (c *MsgClient) Intercept(interceptors ...Interceptor) {
  2221. c.inters.Msg = append(c.inters.Msg, interceptors...)
  2222. }
  2223. // Create returns a builder for creating a Msg entity.
  2224. func (c *MsgClient) Create() *MsgCreate {
  2225. mutation := newMsgMutation(c.config, OpCreate)
  2226. return &MsgCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2227. }
  2228. // CreateBulk returns a builder for creating a bulk of Msg entities.
  2229. func (c *MsgClient) CreateBulk(builders ...*MsgCreate) *MsgCreateBulk {
  2230. return &MsgCreateBulk{config: c.config, builders: builders}
  2231. }
  2232. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2233. // a builder and applies setFunc on it.
  2234. func (c *MsgClient) MapCreateBulk(slice any, setFunc func(*MsgCreate, int)) *MsgCreateBulk {
  2235. rv := reflect.ValueOf(slice)
  2236. if rv.Kind() != reflect.Slice {
  2237. return &MsgCreateBulk{err: fmt.Errorf("calling to MsgClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2238. }
  2239. builders := make([]*MsgCreate, rv.Len())
  2240. for i := 0; i < rv.Len(); i++ {
  2241. builders[i] = c.Create()
  2242. setFunc(builders[i], i)
  2243. }
  2244. return &MsgCreateBulk{config: c.config, builders: builders}
  2245. }
  2246. // Update returns an update builder for Msg.
  2247. func (c *MsgClient) Update() *MsgUpdate {
  2248. mutation := newMsgMutation(c.config, OpUpdate)
  2249. return &MsgUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2250. }
  2251. // UpdateOne returns an update builder for the given entity.
  2252. func (c *MsgClient) UpdateOne(m *Msg) *MsgUpdateOne {
  2253. mutation := newMsgMutation(c.config, OpUpdateOne, withMsg(m))
  2254. return &MsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2255. }
  2256. // UpdateOneID returns an update builder for the given id.
  2257. func (c *MsgClient) UpdateOneID(id uint64) *MsgUpdateOne {
  2258. mutation := newMsgMutation(c.config, OpUpdateOne, withMsgID(id))
  2259. return &MsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2260. }
  2261. // Delete returns a delete builder for Msg.
  2262. func (c *MsgClient) Delete() *MsgDelete {
  2263. mutation := newMsgMutation(c.config, OpDelete)
  2264. return &MsgDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2265. }
  2266. // DeleteOne returns a builder for deleting the given entity.
  2267. func (c *MsgClient) DeleteOne(m *Msg) *MsgDeleteOne {
  2268. return c.DeleteOneID(m.ID)
  2269. }
  2270. // DeleteOneID returns a builder for deleting the given entity by its id.
  2271. func (c *MsgClient) DeleteOneID(id uint64) *MsgDeleteOne {
  2272. builder := c.Delete().Where(msg.ID(id))
  2273. builder.mutation.id = &id
  2274. builder.mutation.op = OpDeleteOne
  2275. return &MsgDeleteOne{builder}
  2276. }
  2277. // Query returns a query builder for Msg.
  2278. func (c *MsgClient) Query() *MsgQuery {
  2279. return &MsgQuery{
  2280. config: c.config,
  2281. ctx: &QueryContext{Type: TypeMsg},
  2282. inters: c.Interceptors(),
  2283. }
  2284. }
  2285. // Get returns a Msg entity by its id.
  2286. func (c *MsgClient) Get(ctx context.Context, id uint64) (*Msg, error) {
  2287. return c.Query().Where(msg.ID(id)).Only(ctx)
  2288. }
  2289. // GetX is like Get, but panics if an error occurs.
  2290. func (c *MsgClient) GetX(ctx context.Context, id uint64) *Msg {
  2291. obj, err := c.Get(ctx, id)
  2292. if err != nil {
  2293. panic(err)
  2294. }
  2295. return obj
  2296. }
  2297. // Hooks returns the client hooks.
  2298. func (c *MsgClient) Hooks() []Hook {
  2299. hooks := c.hooks.Msg
  2300. return append(hooks[:len(hooks):len(hooks)], msg.Hooks[:]...)
  2301. }
  2302. // Interceptors returns the client interceptors.
  2303. func (c *MsgClient) Interceptors() []Interceptor {
  2304. inters := c.inters.Msg
  2305. return append(inters[:len(inters):len(inters)], msg.Interceptors[:]...)
  2306. }
  2307. func (c *MsgClient) mutate(ctx context.Context, m *MsgMutation) (Value, error) {
  2308. switch m.Op() {
  2309. case OpCreate:
  2310. return (&MsgCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2311. case OpUpdate:
  2312. return (&MsgUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2313. case OpUpdateOne:
  2314. return (&MsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2315. case OpDelete, OpDeleteOne:
  2316. return (&MsgDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2317. default:
  2318. return nil, fmt.Errorf("ent: unknown Msg mutation op: %q", m.Op())
  2319. }
  2320. }
  2321. // ServerClient is a client for the Server schema.
  2322. type ServerClient struct {
  2323. config
  2324. }
  2325. // NewServerClient returns a client for the Server from the given config.
  2326. func NewServerClient(c config) *ServerClient {
  2327. return &ServerClient{config: c}
  2328. }
  2329. // Use adds a list of mutation hooks to the hooks stack.
  2330. // A call to `Use(f, g, h)` equals to `server.Hooks(f(g(h())))`.
  2331. func (c *ServerClient) Use(hooks ...Hook) {
  2332. c.hooks.Server = append(c.hooks.Server, hooks...)
  2333. }
  2334. // Intercept adds a list of query interceptors to the interceptors stack.
  2335. // A call to `Intercept(f, g, h)` equals to `server.Intercept(f(g(h())))`.
  2336. func (c *ServerClient) Intercept(interceptors ...Interceptor) {
  2337. c.inters.Server = append(c.inters.Server, interceptors...)
  2338. }
  2339. // Create returns a builder for creating a Server entity.
  2340. func (c *ServerClient) Create() *ServerCreate {
  2341. mutation := newServerMutation(c.config, OpCreate)
  2342. return &ServerCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2343. }
  2344. // CreateBulk returns a builder for creating a bulk of Server entities.
  2345. func (c *ServerClient) CreateBulk(builders ...*ServerCreate) *ServerCreateBulk {
  2346. return &ServerCreateBulk{config: c.config, builders: builders}
  2347. }
  2348. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2349. // a builder and applies setFunc on it.
  2350. func (c *ServerClient) MapCreateBulk(slice any, setFunc func(*ServerCreate, int)) *ServerCreateBulk {
  2351. rv := reflect.ValueOf(slice)
  2352. if rv.Kind() != reflect.Slice {
  2353. return &ServerCreateBulk{err: fmt.Errorf("calling to ServerClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2354. }
  2355. builders := make([]*ServerCreate, rv.Len())
  2356. for i := 0; i < rv.Len(); i++ {
  2357. builders[i] = c.Create()
  2358. setFunc(builders[i], i)
  2359. }
  2360. return &ServerCreateBulk{config: c.config, builders: builders}
  2361. }
  2362. // Update returns an update builder for Server.
  2363. func (c *ServerClient) Update() *ServerUpdate {
  2364. mutation := newServerMutation(c.config, OpUpdate)
  2365. return &ServerUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2366. }
  2367. // UpdateOne returns an update builder for the given entity.
  2368. func (c *ServerClient) UpdateOne(s *Server) *ServerUpdateOne {
  2369. mutation := newServerMutation(c.config, OpUpdateOne, withServer(s))
  2370. return &ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2371. }
  2372. // UpdateOneID returns an update builder for the given id.
  2373. func (c *ServerClient) UpdateOneID(id uint64) *ServerUpdateOne {
  2374. mutation := newServerMutation(c.config, OpUpdateOne, withServerID(id))
  2375. return &ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2376. }
  2377. // Delete returns a delete builder for Server.
  2378. func (c *ServerClient) Delete() *ServerDelete {
  2379. mutation := newServerMutation(c.config, OpDelete)
  2380. return &ServerDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2381. }
  2382. // DeleteOne returns a builder for deleting the given entity.
  2383. func (c *ServerClient) DeleteOne(s *Server) *ServerDeleteOne {
  2384. return c.DeleteOneID(s.ID)
  2385. }
  2386. // DeleteOneID returns a builder for deleting the given entity by its id.
  2387. func (c *ServerClient) DeleteOneID(id uint64) *ServerDeleteOne {
  2388. builder := c.Delete().Where(server.ID(id))
  2389. builder.mutation.id = &id
  2390. builder.mutation.op = OpDeleteOne
  2391. return &ServerDeleteOne{builder}
  2392. }
  2393. // Query returns a query builder for Server.
  2394. func (c *ServerClient) Query() *ServerQuery {
  2395. return &ServerQuery{
  2396. config: c.config,
  2397. ctx: &QueryContext{Type: TypeServer},
  2398. inters: c.Interceptors(),
  2399. }
  2400. }
  2401. // Get returns a Server entity by its id.
  2402. func (c *ServerClient) Get(ctx context.Context, id uint64) (*Server, error) {
  2403. return c.Query().Where(server.ID(id)).Only(ctx)
  2404. }
  2405. // GetX is like Get, but panics if an error occurs.
  2406. func (c *ServerClient) GetX(ctx context.Context, id uint64) *Server {
  2407. obj, err := c.Get(ctx, id)
  2408. if err != nil {
  2409. panic(err)
  2410. }
  2411. return obj
  2412. }
  2413. // QueryWxs queries the wxs edge of a Server.
  2414. func (c *ServerClient) QueryWxs(s *Server) *WxQuery {
  2415. query := (&WxClient{config: c.config}).Query()
  2416. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2417. id := s.ID
  2418. step := sqlgraph.NewStep(
  2419. sqlgraph.From(server.Table, server.FieldID, id),
  2420. sqlgraph.To(wx.Table, wx.FieldID),
  2421. sqlgraph.Edge(sqlgraph.O2M, false, server.WxsTable, server.WxsColumn),
  2422. )
  2423. fromV = sqlgraph.Neighbors(s.driver.Dialect(), step)
  2424. return fromV, nil
  2425. }
  2426. return query
  2427. }
  2428. // Hooks returns the client hooks.
  2429. func (c *ServerClient) Hooks() []Hook {
  2430. hooks := c.hooks.Server
  2431. return append(hooks[:len(hooks):len(hooks)], server.Hooks[:]...)
  2432. }
  2433. // Interceptors returns the client interceptors.
  2434. func (c *ServerClient) Interceptors() []Interceptor {
  2435. inters := c.inters.Server
  2436. return append(inters[:len(inters):len(inters)], server.Interceptors[:]...)
  2437. }
  2438. func (c *ServerClient) mutate(ctx context.Context, m *ServerMutation) (Value, error) {
  2439. switch m.Op() {
  2440. case OpCreate:
  2441. return (&ServerCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2442. case OpUpdate:
  2443. return (&ServerUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2444. case OpUpdateOne:
  2445. return (&ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2446. case OpDelete, OpDeleteOne:
  2447. return (&ServerDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2448. default:
  2449. return nil, fmt.Errorf("ent: unknown Server mutation op: %q", m.Op())
  2450. }
  2451. }
  2452. // SopNodeClient is a client for the SopNode schema.
  2453. type SopNodeClient struct {
  2454. config
  2455. }
  2456. // NewSopNodeClient returns a client for the SopNode from the given config.
  2457. func NewSopNodeClient(c config) *SopNodeClient {
  2458. return &SopNodeClient{config: c}
  2459. }
  2460. // Use adds a list of mutation hooks to the hooks stack.
  2461. // A call to `Use(f, g, h)` equals to `sopnode.Hooks(f(g(h())))`.
  2462. func (c *SopNodeClient) Use(hooks ...Hook) {
  2463. c.hooks.SopNode = append(c.hooks.SopNode, hooks...)
  2464. }
  2465. // Intercept adds a list of query interceptors to the interceptors stack.
  2466. // A call to `Intercept(f, g, h)` equals to `sopnode.Intercept(f(g(h())))`.
  2467. func (c *SopNodeClient) Intercept(interceptors ...Interceptor) {
  2468. c.inters.SopNode = append(c.inters.SopNode, interceptors...)
  2469. }
  2470. // Create returns a builder for creating a SopNode entity.
  2471. func (c *SopNodeClient) Create() *SopNodeCreate {
  2472. mutation := newSopNodeMutation(c.config, OpCreate)
  2473. return &SopNodeCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2474. }
  2475. // CreateBulk returns a builder for creating a bulk of SopNode entities.
  2476. func (c *SopNodeClient) CreateBulk(builders ...*SopNodeCreate) *SopNodeCreateBulk {
  2477. return &SopNodeCreateBulk{config: c.config, builders: builders}
  2478. }
  2479. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2480. // a builder and applies setFunc on it.
  2481. func (c *SopNodeClient) MapCreateBulk(slice any, setFunc func(*SopNodeCreate, int)) *SopNodeCreateBulk {
  2482. rv := reflect.ValueOf(slice)
  2483. if rv.Kind() != reflect.Slice {
  2484. return &SopNodeCreateBulk{err: fmt.Errorf("calling to SopNodeClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2485. }
  2486. builders := make([]*SopNodeCreate, rv.Len())
  2487. for i := 0; i < rv.Len(); i++ {
  2488. builders[i] = c.Create()
  2489. setFunc(builders[i], i)
  2490. }
  2491. return &SopNodeCreateBulk{config: c.config, builders: builders}
  2492. }
  2493. // Update returns an update builder for SopNode.
  2494. func (c *SopNodeClient) Update() *SopNodeUpdate {
  2495. mutation := newSopNodeMutation(c.config, OpUpdate)
  2496. return &SopNodeUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2497. }
  2498. // UpdateOne returns an update builder for the given entity.
  2499. func (c *SopNodeClient) UpdateOne(sn *SopNode) *SopNodeUpdateOne {
  2500. mutation := newSopNodeMutation(c.config, OpUpdateOne, withSopNode(sn))
  2501. return &SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2502. }
  2503. // UpdateOneID returns an update builder for the given id.
  2504. func (c *SopNodeClient) UpdateOneID(id uint64) *SopNodeUpdateOne {
  2505. mutation := newSopNodeMutation(c.config, OpUpdateOne, withSopNodeID(id))
  2506. return &SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2507. }
  2508. // Delete returns a delete builder for SopNode.
  2509. func (c *SopNodeClient) Delete() *SopNodeDelete {
  2510. mutation := newSopNodeMutation(c.config, OpDelete)
  2511. return &SopNodeDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2512. }
  2513. // DeleteOne returns a builder for deleting the given entity.
  2514. func (c *SopNodeClient) DeleteOne(sn *SopNode) *SopNodeDeleteOne {
  2515. return c.DeleteOneID(sn.ID)
  2516. }
  2517. // DeleteOneID returns a builder for deleting the given entity by its id.
  2518. func (c *SopNodeClient) DeleteOneID(id uint64) *SopNodeDeleteOne {
  2519. builder := c.Delete().Where(sopnode.ID(id))
  2520. builder.mutation.id = &id
  2521. builder.mutation.op = OpDeleteOne
  2522. return &SopNodeDeleteOne{builder}
  2523. }
  2524. // Query returns a query builder for SopNode.
  2525. func (c *SopNodeClient) Query() *SopNodeQuery {
  2526. return &SopNodeQuery{
  2527. config: c.config,
  2528. ctx: &QueryContext{Type: TypeSopNode},
  2529. inters: c.Interceptors(),
  2530. }
  2531. }
  2532. // Get returns a SopNode entity by its id.
  2533. func (c *SopNodeClient) Get(ctx context.Context, id uint64) (*SopNode, error) {
  2534. return c.Query().Where(sopnode.ID(id)).Only(ctx)
  2535. }
  2536. // GetX is like Get, but panics if an error occurs.
  2537. func (c *SopNodeClient) GetX(ctx context.Context, id uint64) *SopNode {
  2538. obj, err := c.Get(ctx, id)
  2539. if err != nil {
  2540. panic(err)
  2541. }
  2542. return obj
  2543. }
  2544. // QuerySopStage queries the sop_stage edge of a SopNode.
  2545. func (c *SopNodeClient) QuerySopStage(sn *SopNode) *SopStageQuery {
  2546. query := (&SopStageClient{config: c.config}).Query()
  2547. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2548. id := sn.ID
  2549. step := sqlgraph.NewStep(
  2550. sqlgraph.From(sopnode.Table, sopnode.FieldID, id),
  2551. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  2552. sqlgraph.Edge(sqlgraph.M2O, true, sopnode.SopStageTable, sopnode.SopStageColumn),
  2553. )
  2554. fromV = sqlgraph.Neighbors(sn.driver.Dialect(), step)
  2555. return fromV, nil
  2556. }
  2557. return query
  2558. }
  2559. // QueryNodeMessages queries the node_messages edge of a SopNode.
  2560. func (c *SopNodeClient) QueryNodeMessages(sn *SopNode) *MessageRecordsQuery {
  2561. query := (&MessageRecordsClient{config: c.config}).Query()
  2562. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2563. id := sn.ID
  2564. step := sqlgraph.NewStep(
  2565. sqlgraph.From(sopnode.Table, sopnode.FieldID, id),
  2566. sqlgraph.To(messagerecords.Table, messagerecords.FieldID),
  2567. sqlgraph.Edge(sqlgraph.O2M, false, sopnode.NodeMessagesTable, sopnode.NodeMessagesColumn),
  2568. )
  2569. fromV = sqlgraph.Neighbors(sn.driver.Dialect(), step)
  2570. return fromV, nil
  2571. }
  2572. return query
  2573. }
  2574. // Hooks returns the client hooks.
  2575. func (c *SopNodeClient) Hooks() []Hook {
  2576. hooks := c.hooks.SopNode
  2577. return append(hooks[:len(hooks):len(hooks)], sopnode.Hooks[:]...)
  2578. }
  2579. // Interceptors returns the client interceptors.
  2580. func (c *SopNodeClient) Interceptors() []Interceptor {
  2581. inters := c.inters.SopNode
  2582. return append(inters[:len(inters):len(inters)], sopnode.Interceptors[:]...)
  2583. }
  2584. func (c *SopNodeClient) mutate(ctx context.Context, m *SopNodeMutation) (Value, error) {
  2585. switch m.Op() {
  2586. case OpCreate:
  2587. return (&SopNodeCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2588. case OpUpdate:
  2589. return (&SopNodeUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2590. case OpUpdateOne:
  2591. return (&SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2592. case OpDelete, OpDeleteOne:
  2593. return (&SopNodeDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2594. default:
  2595. return nil, fmt.Errorf("ent: unknown SopNode mutation op: %q", m.Op())
  2596. }
  2597. }
  2598. // SopStageClient is a client for the SopStage schema.
  2599. type SopStageClient struct {
  2600. config
  2601. }
  2602. // NewSopStageClient returns a client for the SopStage from the given config.
  2603. func NewSopStageClient(c config) *SopStageClient {
  2604. return &SopStageClient{config: c}
  2605. }
  2606. // Use adds a list of mutation hooks to the hooks stack.
  2607. // A call to `Use(f, g, h)` equals to `sopstage.Hooks(f(g(h())))`.
  2608. func (c *SopStageClient) Use(hooks ...Hook) {
  2609. c.hooks.SopStage = append(c.hooks.SopStage, hooks...)
  2610. }
  2611. // Intercept adds a list of query interceptors to the interceptors stack.
  2612. // A call to `Intercept(f, g, h)` equals to `sopstage.Intercept(f(g(h())))`.
  2613. func (c *SopStageClient) Intercept(interceptors ...Interceptor) {
  2614. c.inters.SopStage = append(c.inters.SopStage, interceptors...)
  2615. }
  2616. // Create returns a builder for creating a SopStage entity.
  2617. func (c *SopStageClient) Create() *SopStageCreate {
  2618. mutation := newSopStageMutation(c.config, OpCreate)
  2619. return &SopStageCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2620. }
  2621. // CreateBulk returns a builder for creating a bulk of SopStage entities.
  2622. func (c *SopStageClient) CreateBulk(builders ...*SopStageCreate) *SopStageCreateBulk {
  2623. return &SopStageCreateBulk{config: c.config, builders: builders}
  2624. }
  2625. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2626. // a builder and applies setFunc on it.
  2627. func (c *SopStageClient) MapCreateBulk(slice any, setFunc func(*SopStageCreate, int)) *SopStageCreateBulk {
  2628. rv := reflect.ValueOf(slice)
  2629. if rv.Kind() != reflect.Slice {
  2630. return &SopStageCreateBulk{err: fmt.Errorf("calling to SopStageClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2631. }
  2632. builders := make([]*SopStageCreate, rv.Len())
  2633. for i := 0; i < rv.Len(); i++ {
  2634. builders[i] = c.Create()
  2635. setFunc(builders[i], i)
  2636. }
  2637. return &SopStageCreateBulk{config: c.config, builders: builders}
  2638. }
  2639. // Update returns an update builder for SopStage.
  2640. func (c *SopStageClient) Update() *SopStageUpdate {
  2641. mutation := newSopStageMutation(c.config, OpUpdate)
  2642. return &SopStageUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2643. }
  2644. // UpdateOne returns an update builder for the given entity.
  2645. func (c *SopStageClient) UpdateOne(ss *SopStage) *SopStageUpdateOne {
  2646. mutation := newSopStageMutation(c.config, OpUpdateOne, withSopStage(ss))
  2647. return &SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2648. }
  2649. // UpdateOneID returns an update builder for the given id.
  2650. func (c *SopStageClient) UpdateOneID(id uint64) *SopStageUpdateOne {
  2651. mutation := newSopStageMutation(c.config, OpUpdateOne, withSopStageID(id))
  2652. return &SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2653. }
  2654. // Delete returns a delete builder for SopStage.
  2655. func (c *SopStageClient) Delete() *SopStageDelete {
  2656. mutation := newSopStageMutation(c.config, OpDelete)
  2657. return &SopStageDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2658. }
  2659. // DeleteOne returns a builder for deleting the given entity.
  2660. func (c *SopStageClient) DeleteOne(ss *SopStage) *SopStageDeleteOne {
  2661. return c.DeleteOneID(ss.ID)
  2662. }
  2663. // DeleteOneID returns a builder for deleting the given entity by its id.
  2664. func (c *SopStageClient) DeleteOneID(id uint64) *SopStageDeleteOne {
  2665. builder := c.Delete().Where(sopstage.ID(id))
  2666. builder.mutation.id = &id
  2667. builder.mutation.op = OpDeleteOne
  2668. return &SopStageDeleteOne{builder}
  2669. }
  2670. // Query returns a query builder for SopStage.
  2671. func (c *SopStageClient) Query() *SopStageQuery {
  2672. return &SopStageQuery{
  2673. config: c.config,
  2674. ctx: &QueryContext{Type: TypeSopStage},
  2675. inters: c.Interceptors(),
  2676. }
  2677. }
  2678. // Get returns a SopStage entity by its id.
  2679. func (c *SopStageClient) Get(ctx context.Context, id uint64) (*SopStage, error) {
  2680. return c.Query().Where(sopstage.ID(id)).Only(ctx)
  2681. }
  2682. // GetX is like Get, but panics if an error occurs.
  2683. func (c *SopStageClient) GetX(ctx context.Context, id uint64) *SopStage {
  2684. obj, err := c.Get(ctx, id)
  2685. if err != nil {
  2686. panic(err)
  2687. }
  2688. return obj
  2689. }
  2690. // QuerySopTask queries the sop_task edge of a SopStage.
  2691. func (c *SopStageClient) QuerySopTask(ss *SopStage) *SopTaskQuery {
  2692. query := (&SopTaskClient{config: c.config}).Query()
  2693. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2694. id := ss.ID
  2695. step := sqlgraph.NewStep(
  2696. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  2697. sqlgraph.To(soptask.Table, soptask.FieldID),
  2698. sqlgraph.Edge(sqlgraph.M2O, true, sopstage.SopTaskTable, sopstage.SopTaskColumn),
  2699. )
  2700. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  2701. return fromV, nil
  2702. }
  2703. return query
  2704. }
  2705. // QueryStageNodes queries the stage_nodes edge of a SopStage.
  2706. func (c *SopStageClient) QueryStageNodes(ss *SopStage) *SopNodeQuery {
  2707. query := (&SopNodeClient{config: c.config}).Query()
  2708. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2709. id := ss.ID
  2710. step := sqlgraph.NewStep(
  2711. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  2712. sqlgraph.To(sopnode.Table, sopnode.FieldID),
  2713. sqlgraph.Edge(sqlgraph.O2M, false, sopstage.StageNodesTable, sopstage.StageNodesColumn),
  2714. )
  2715. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  2716. return fromV, nil
  2717. }
  2718. return query
  2719. }
  2720. // QueryStageMessages queries the stage_messages edge of a SopStage.
  2721. func (c *SopStageClient) QueryStageMessages(ss *SopStage) *MessageRecordsQuery {
  2722. query := (&MessageRecordsClient{config: c.config}).Query()
  2723. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2724. id := ss.ID
  2725. step := sqlgraph.NewStep(
  2726. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  2727. sqlgraph.To(messagerecords.Table, messagerecords.FieldID),
  2728. sqlgraph.Edge(sqlgraph.O2M, false, sopstage.StageMessagesTable, sopstage.StageMessagesColumn),
  2729. )
  2730. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  2731. return fromV, nil
  2732. }
  2733. return query
  2734. }
  2735. // Hooks returns the client hooks.
  2736. func (c *SopStageClient) Hooks() []Hook {
  2737. hooks := c.hooks.SopStage
  2738. return append(hooks[:len(hooks):len(hooks)], sopstage.Hooks[:]...)
  2739. }
  2740. // Interceptors returns the client interceptors.
  2741. func (c *SopStageClient) Interceptors() []Interceptor {
  2742. inters := c.inters.SopStage
  2743. return append(inters[:len(inters):len(inters)], sopstage.Interceptors[:]...)
  2744. }
  2745. func (c *SopStageClient) mutate(ctx context.Context, m *SopStageMutation) (Value, error) {
  2746. switch m.Op() {
  2747. case OpCreate:
  2748. return (&SopStageCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2749. case OpUpdate:
  2750. return (&SopStageUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2751. case OpUpdateOne:
  2752. return (&SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2753. case OpDelete, OpDeleteOne:
  2754. return (&SopStageDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2755. default:
  2756. return nil, fmt.Errorf("ent: unknown SopStage mutation op: %q", m.Op())
  2757. }
  2758. }
  2759. // SopTaskClient is a client for the SopTask schema.
  2760. type SopTaskClient struct {
  2761. config
  2762. }
  2763. // NewSopTaskClient returns a client for the SopTask from the given config.
  2764. func NewSopTaskClient(c config) *SopTaskClient {
  2765. return &SopTaskClient{config: c}
  2766. }
  2767. // Use adds a list of mutation hooks to the hooks stack.
  2768. // A call to `Use(f, g, h)` equals to `soptask.Hooks(f(g(h())))`.
  2769. func (c *SopTaskClient) Use(hooks ...Hook) {
  2770. c.hooks.SopTask = append(c.hooks.SopTask, hooks...)
  2771. }
  2772. // Intercept adds a list of query interceptors to the interceptors stack.
  2773. // A call to `Intercept(f, g, h)` equals to `soptask.Intercept(f(g(h())))`.
  2774. func (c *SopTaskClient) Intercept(interceptors ...Interceptor) {
  2775. c.inters.SopTask = append(c.inters.SopTask, interceptors...)
  2776. }
  2777. // Create returns a builder for creating a SopTask entity.
  2778. func (c *SopTaskClient) Create() *SopTaskCreate {
  2779. mutation := newSopTaskMutation(c.config, OpCreate)
  2780. return &SopTaskCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2781. }
  2782. // CreateBulk returns a builder for creating a bulk of SopTask entities.
  2783. func (c *SopTaskClient) CreateBulk(builders ...*SopTaskCreate) *SopTaskCreateBulk {
  2784. return &SopTaskCreateBulk{config: c.config, builders: builders}
  2785. }
  2786. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2787. // a builder and applies setFunc on it.
  2788. func (c *SopTaskClient) MapCreateBulk(slice any, setFunc func(*SopTaskCreate, int)) *SopTaskCreateBulk {
  2789. rv := reflect.ValueOf(slice)
  2790. if rv.Kind() != reflect.Slice {
  2791. return &SopTaskCreateBulk{err: fmt.Errorf("calling to SopTaskClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2792. }
  2793. builders := make([]*SopTaskCreate, rv.Len())
  2794. for i := 0; i < rv.Len(); i++ {
  2795. builders[i] = c.Create()
  2796. setFunc(builders[i], i)
  2797. }
  2798. return &SopTaskCreateBulk{config: c.config, builders: builders}
  2799. }
  2800. // Update returns an update builder for SopTask.
  2801. func (c *SopTaskClient) Update() *SopTaskUpdate {
  2802. mutation := newSopTaskMutation(c.config, OpUpdate)
  2803. return &SopTaskUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2804. }
  2805. // UpdateOne returns an update builder for the given entity.
  2806. func (c *SopTaskClient) UpdateOne(st *SopTask) *SopTaskUpdateOne {
  2807. mutation := newSopTaskMutation(c.config, OpUpdateOne, withSopTask(st))
  2808. return &SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2809. }
  2810. // UpdateOneID returns an update builder for the given id.
  2811. func (c *SopTaskClient) UpdateOneID(id uint64) *SopTaskUpdateOne {
  2812. mutation := newSopTaskMutation(c.config, OpUpdateOne, withSopTaskID(id))
  2813. return &SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2814. }
  2815. // Delete returns a delete builder for SopTask.
  2816. func (c *SopTaskClient) Delete() *SopTaskDelete {
  2817. mutation := newSopTaskMutation(c.config, OpDelete)
  2818. return &SopTaskDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2819. }
  2820. // DeleteOne returns a builder for deleting the given entity.
  2821. func (c *SopTaskClient) DeleteOne(st *SopTask) *SopTaskDeleteOne {
  2822. return c.DeleteOneID(st.ID)
  2823. }
  2824. // DeleteOneID returns a builder for deleting the given entity by its id.
  2825. func (c *SopTaskClient) DeleteOneID(id uint64) *SopTaskDeleteOne {
  2826. builder := c.Delete().Where(soptask.ID(id))
  2827. builder.mutation.id = &id
  2828. builder.mutation.op = OpDeleteOne
  2829. return &SopTaskDeleteOne{builder}
  2830. }
  2831. // Query returns a query builder for SopTask.
  2832. func (c *SopTaskClient) Query() *SopTaskQuery {
  2833. return &SopTaskQuery{
  2834. config: c.config,
  2835. ctx: &QueryContext{Type: TypeSopTask},
  2836. inters: c.Interceptors(),
  2837. }
  2838. }
  2839. // Get returns a SopTask entity by its id.
  2840. func (c *SopTaskClient) Get(ctx context.Context, id uint64) (*SopTask, error) {
  2841. return c.Query().Where(soptask.ID(id)).Only(ctx)
  2842. }
  2843. // GetX is like Get, but panics if an error occurs.
  2844. func (c *SopTaskClient) GetX(ctx context.Context, id uint64) *SopTask {
  2845. obj, err := c.Get(ctx, id)
  2846. if err != nil {
  2847. panic(err)
  2848. }
  2849. return obj
  2850. }
  2851. // QueryTaskStages queries the task_stages edge of a SopTask.
  2852. func (c *SopTaskClient) QueryTaskStages(st *SopTask) *SopStageQuery {
  2853. query := (&SopStageClient{config: c.config}).Query()
  2854. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2855. id := st.ID
  2856. step := sqlgraph.NewStep(
  2857. sqlgraph.From(soptask.Table, soptask.FieldID, id),
  2858. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  2859. sqlgraph.Edge(sqlgraph.O2M, false, soptask.TaskStagesTable, soptask.TaskStagesColumn),
  2860. )
  2861. fromV = sqlgraph.Neighbors(st.driver.Dialect(), step)
  2862. return fromV, nil
  2863. }
  2864. return query
  2865. }
  2866. // Hooks returns the client hooks.
  2867. func (c *SopTaskClient) Hooks() []Hook {
  2868. hooks := c.hooks.SopTask
  2869. return append(hooks[:len(hooks):len(hooks)], soptask.Hooks[:]...)
  2870. }
  2871. // Interceptors returns the client interceptors.
  2872. func (c *SopTaskClient) Interceptors() []Interceptor {
  2873. inters := c.inters.SopTask
  2874. return append(inters[:len(inters):len(inters)], soptask.Interceptors[:]...)
  2875. }
  2876. func (c *SopTaskClient) mutate(ctx context.Context, m *SopTaskMutation) (Value, error) {
  2877. switch m.Op() {
  2878. case OpCreate:
  2879. return (&SopTaskCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2880. case OpUpdate:
  2881. return (&SopTaskUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2882. case OpUpdateOne:
  2883. return (&SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2884. case OpDelete, OpDeleteOne:
  2885. return (&SopTaskDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2886. default:
  2887. return nil, fmt.Errorf("ent: unknown SopTask mutation op: %q", m.Op())
  2888. }
  2889. }
  2890. // TokenClient is a client for the Token schema.
  2891. type TokenClient struct {
  2892. config
  2893. }
  2894. // NewTokenClient returns a client for the Token from the given config.
  2895. func NewTokenClient(c config) *TokenClient {
  2896. return &TokenClient{config: c}
  2897. }
  2898. // Use adds a list of mutation hooks to the hooks stack.
  2899. // A call to `Use(f, g, h)` equals to `token.Hooks(f(g(h())))`.
  2900. func (c *TokenClient) Use(hooks ...Hook) {
  2901. c.hooks.Token = append(c.hooks.Token, hooks...)
  2902. }
  2903. // Intercept adds a list of query interceptors to the interceptors stack.
  2904. // A call to `Intercept(f, g, h)` equals to `token.Intercept(f(g(h())))`.
  2905. func (c *TokenClient) Intercept(interceptors ...Interceptor) {
  2906. c.inters.Token = append(c.inters.Token, interceptors...)
  2907. }
  2908. // Create returns a builder for creating a Token entity.
  2909. func (c *TokenClient) Create() *TokenCreate {
  2910. mutation := newTokenMutation(c.config, OpCreate)
  2911. return &TokenCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2912. }
  2913. // CreateBulk returns a builder for creating a bulk of Token entities.
  2914. func (c *TokenClient) CreateBulk(builders ...*TokenCreate) *TokenCreateBulk {
  2915. return &TokenCreateBulk{config: c.config, builders: builders}
  2916. }
  2917. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2918. // a builder and applies setFunc on it.
  2919. func (c *TokenClient) MapCreateBulk(slice any, setFunc func(*TokenCreate, int)) *TokenCreateBulk {
  2920. rv := reflect.ValueOf(slice)
  2921. if rv.Kind() != reflect.Slice {
  2922. return &TokenCreateBulk{err: fmt.Errorf("calling to TokenClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2923. }
  2924. builders := make([]*TokenCreate, rv.Len())
  2925. for i := 0; i < rv.Len(); i++ {
  2926. builders[i] = c.Create()
  2927. setFunc(builders[i], i)
  2928. }
  2929. return &TokenCreateBulk{config: c.config, builders: builders}
  2930. }
  2931. // Update returns an update builder for Token.
  2932. func (c *TokenClient) Update() *TokenUpdate {
  2933. mutation := newTokenMutation(c.config, OpUpdate)
  2934. return &TokenUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2935. }
  2936. // UpdateOne returns an update builder for the given entity.
  2937. func (c *TokenClient) UpdateOne(t *Token) *TokenUpdateOne {
  2938. mutation := newTokenMutation(c.config, OpUpdateOne, withToken(t))
  2939. return &TokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2940. }
  2941. // UpdateOneID returns an update builder for the given id.
  2942. func (c *TokenClient) UpdateOneID(id uint64) *TokenUpdateOne {
  2943. mutation := newTokenMutation(c.config, OpUpdateOne, withTokenID(id))
  2944. return &TokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2945. }
  2946. // Delete returns a delete builder for Token.
  2947. func (c *TokenClient) Delete() *TokenDelete {
  2948. mutation := newTokenMutation(c.config, OpDelete)
  2949. return &TokenDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2950. }
  2951. // DeleteOne returns a builder for deleting the given entity.
  2952. func (c *TokenClient) DeleteOne(t *Token) *TokenDeleteOne {
  2953. return c.DeleteOneID(t.ID)
  2954. }
  2955. // DeleteOneID returns a builder for deleting the given entity by its id.
  2956. func (c *TokenClient) DeleteOneID(id uint64) *TokenDeleteOne {
  2957. builder := c.Delete().Where(token.ID(id))
  2958. builder.mutation.id = &id
  2959. builder.mutation.op = OpDeleteOne
  2960. return &TokenDeleteOne{builder}
  2961. }
  2962. // Query returns a query builder for Token.
  2963. func (c *TokenClient) Query() *TokenQuery {
  2964. return &TokenQuery{
  2965. config: c.config,
  2966. ctx: &QueryContext{Type: TypeToken},
  2967. inters: c.Interceptors(),
  2968. }
  2969. }
  2970. // Get returns a Token entity by its id.
  2971. func (c *TokenClient) Get(ctx context.Context, id uint64) (*Token, error) {
  2972. return c.Query().Where(token.ID(id)).Only(ctx)
  2973. }
  2974. // GetX is like Get, but panics if an error occurs.
  2975. func (c *TokenClient) GetX(ctx context.Context, id uint64) *Token {
  2976. obj, err := c.Get(ctx, id)
  2977. if err != nil {
  2978. panic(err)
  2979. }
  2980. return obj
  2981. }
  2982. // QueryAgent queries the agent edge of a Token.
  2983. func (c *TokenClient) QueryAgent(t *Token) *AgentQuery {
  2984. query := (&AgentClient{config: c.config}).Query()
  2985. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2986. id := t.ID
  2987. step := sqlgraph.NewStep(
  2988. sqlgraph.From(token.Table, token.FieldID, id),
  2989. sqlgraph.To(agent.Table, agent.FieldID),
  2990. sqlgraph.Edge(sqlgraph.M2O, true, token.AgentTable, token.AgentColumn),
  2991. )
  2992. fromV = sqlgraph.Neighbors(t.driver.Dialect(), step)
  2993. return fromV, nil
  2994. }
  2995. return query
  2996. }
  2997. // Hooks returns the client hooks.
  2998. func (c *TokenClient) Hooks() []Hook {
  2999. hooks := c.hooks.Token
  3000. return append(hooks[:len(hooks):len(hooks)], token.Hooks[:]...)
  3001. }
  3002. // Interceptors returns the client interceptors.
  3003. func (c *TokenClient) Interceptors() []Interceptor {
  3004. inters := c.inters.Token
  3005. return append(inters[:len(inters):len(inters)], token.Interceptors[:]...)
  3006. }
  3007. func (c *TokenClient) mutate(ctx context.Context, m *TokenMutation) (Value, error) {
  3008. switch m.Op() {
  3009. case OpCreate:
  3010. return (&TokenCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3011. case OpUpdate:
  3012. return (&TokenUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3013. case OpUpdateOne:
  3014. return (&TokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3015. case OpDelete, OpDeleteOne:
  3016. return (&TokenDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3017. default:
  3018. return nil, fmt.Errorf("ent: unknown Token mutation op: %q", m.Op())
  3019. }
  3020. }
  3021. // TutorialClient is a client for the Tutorial schema.
  3022. type TutorialClient struct {
  3023. config
  3024. }
  3025. // NewTutorialClient returns a client for the Tutorial from the given config.
  3026. func NewTutorialClient(c config) *TutorialClient {
  3027. return &TutorialClient{config: c}
  3028. }
  3029. // Use adds a list of mutation hooks to the hooks stack.
  3030. // A call to `Use(f, g, h)` equals to `tutorial.Hooks(f(g(h())))`.
  3031. func (c *TutorialClient) Use(hooks ...Hook) {
  3032. c.hooks.Tutorial = append(c.hooks.Tutorial, hooks...)
  3033. }
  3034. // Intercept adds a list of query interceptors to the interceptors stack.
  3035. // A call to `Intercept(f, g, h)` equals to `tutorial.Intercept(f(g(h())))`.
  3036. func (c *TutorialClient) Intercept(interceptors ...Interceptor) {
  3037. c.inters.Tutorial = append(c.inters.Tutorial, interceptors...)
  3038. }
  3039. // Create returns a builder for creating a Tutorial entity.
  3040. func (c *TutorialClient) Create() *TutorialCreate {
  3041. mutation := newTutorialMutation(c.config, OpCreate)
  3042. return &TutorialCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3043. }
  3044. // CreateBulk returns a builder for creating a bulk of Tutorial entities.
  3045. func (c *TutorialClient) CreateBulk(builders ...*TutorialCreate) *TutorialCreateBulk {
  3046. return &TutorialCreateBulk{config: c.config, builders: builders}
  3047. }
  3048. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  3049. // a builder and applies setFunc on it.
  3050. func (c *TutorialClient) MapCreateBulk(slice any, setFunc func(*TutorialCreate, int)) *TutorialCreateBulk {
  3051. rv := reflect.ValueOf(slice)
  3052. if rv.Kind() != reflect.Slice {
  3053. return &TutorialCreateBulk{err: fmt.Errorf("calling to TutorialClient.MapCreateBulk with wrong type %T, need slice", slice)}
  3054. }
  3055. builders := make([]*TutorialCreate, rv.Len())
  3056. for i := 0; i < rv.Len(); i++ {
  3057. builders[i] = c.Create()
  3058. setFunc(builders[i], i)
  3059. }
  3060. return &TutorialCreateBulk{config: c.config, builders: builders}
  3061. }
  3062. // Update returns an update builder for Tutorial.
  3063. func (c *TutorialClient) Update() *TutorialUpdate {
  3064. mutation := newTutorialMutation(c.config, OpUpdate)
  3065. return &TutorialUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3066. }
  3067. // UpdateOne returns an update builder for the given entity.
  3068. func (c *TutorialClient) UpdateOne(t *Tutorial) *TutorialUpdateOne {
  3069. mutation := newTutorialMutation(c.config, OpUpdateOne, withTutorial(t))
  3070. return &TutorialUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3071. }
  3072. // UpdateOneID returns an update builder for the given id.
  3073. func (c *TutorialClient) UpdateOneID(id uint64) *TutorialUpdateOne {
  3074. mutation := newTutorialMutation(c.config, OpUpdateOne, withTutorialID(id))
  3075. return &TutorialUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3076. }
  3077. // Delete returns a delete builder for Tutorial.
  3078. func (c *TutorialClient) Delete() *TutorialDelete {
  3079. mutation := newTutorialMutation(c.config, OpDelete)
  3080. return &TutorialDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3081. }
  3082. // DeleteOne returns a builder for deleting the given entity.
  3083. func (c *TutorialClient) DeleteOne(t *Tutorial) *TutorialDeleteOne {
  3084. return c.DeleteOneID(t.ID)
  3085. }
  3086. // DeleteOneID returns a builder for deleting the given entity by its id.
  3087. func (c *TutorialClient) DeleteOneID(id uint64) *TutorialDeleteOne {
  3088. builder := c.Delete().Where(tutorial.ID(id))
  3089. builder.mutation.id = &id
  3090. builder.mutation.op = OpDeleteOne
  3091. return &TutorialDeleteOne{builder}
  3092. }
  3093. // Query returns a query builder for Tutorial.
  3094. func (c *TutorialClient) Query() *TutorialQuery {
  3095. return &TutorialQuery{
  3096. config: c.config,
  3097. ctx: &QueryContext{Type: TypeTutorial},
  3098. inters: c.Interceptors(),
  3099. }
  3100. }
  3101. // Get returns a Tutorial entity by its id.
  3102. func (c *TutorialClient) Get(ctx context.Context, id uint64) (*Tutorial, error) {
  3103. return c.Query().Where(tutorial.ID(id)).Only(ctx)
  3104. }
  3105. // GetX is like Get, but panics if an error occurs.
  3106. func (c *TutorialClient) GetX(ctx context.Context, id uint64) *Tutorial {
  3107. obj, err := c.Get(ctx, id)
  3108. if err != nil {
  3109. panic(err)
  3110. }
  3111. return obj
  3112. }
  3113. // QueryEmployee queries the employee edge of a Tutorial.
  3114. func (c *TutorialClient) QueryEmployee(t *Tutorial) *EmployeeQuery {
  3115. query := (&EmployeeClient{config: c.config}).Query()
  3116. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  3117. id := t.ID
  3118. step := sqlgraph.NewStep(
  3119. sqlgraph.From(tutorial.Table, tutorial.FieldID, id),
  3120. sqlgraph.To(employee.Table, employee.FieldID),
  3121. sqlgraph.Edge(sqlgraph.M2O, true, tutorial.EmployeeTable, tutorial.EmployeeColumn),
  3122. )
  3123. fromV = sqlgraph.Neighbors(t.driver.Dialect(), step)
  3124. return fromV, nil
  3125. }
  3126. return query
  3127. }
  3128. // Hooks returns the client hooks.
  3129. func (c *TutorialClient) Hooks() []Hook {
  3130. hooks := c.hooks.Tutorial
  3131. return append(hooks[:len(hooks):len(hooks)], tutorial.Hooks[:]...)
  3132. }
  3133. // Interceptors returns the client interceptors.
  3134. func (c *TutorialClient) Interceptors() []Interceptor {
  3135. inters := c.inters.Tutorial
  3136. return append(inters[:len(inters):len(inters)], tutorial.Interceptors[:]...)
  3137. }
  3138. func (c *TutorialClient) mutate(ctx context.Context, m *TutorialMutation) (Value, error) {
  3139. switch m.Op() {
  3140. case OpCreate:
  3141. return (&TutorialCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3142. case OpUpdate:
  3143. return (&TutorialUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3144. case OpUpdateOne:
  3145. return (&TutorialUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3146. case OpDelete, OpDeleteOne:
  3147. return (&TutorialDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3148. default:
  3149. return nil, fmt.Errorf("ent: unknown Tutorial mutation op: %q", m.Op())
  3150. }
  3151. }
  3152. // WorkExperienceClient is a client for the WorkExperience schema.
  3153. type WorkExperienceClient struct {
  3154. config
  3155. }
  3156. // NewWorkExperienceClient returns a client for the WorkExperience from the given config.
  3157. func NewWorkExperienceClient(c config) *WorkExperienceClient {
  3158. return &WorkExperienceClient{config: c}
  3159. }
  3160. // Use adds a list of mutation hooks to the hooks stack.
  3161. // A call to `Use(f, g, h)` equals to `workexperience.Hooks(f(g(h())))`.
  3162. func (c *WorkExperienceClient) Use(hooks ...Hook) {
  3163. c.hooks.WorkExperience = append(c.hooks.WorkExperience, hooks...)
  3164. }
  3165. // Intercept adds a list of query interceptors to the interceptors stack.
  3166. // A call to `Intercept(f, g, h)` equals to `workexperience.Intercept(f(g(h())))`.
  3167. func (c *WorkExperienceClient) Intercept(interceptors ...Interceptor) {
  3168. c.inters.WorkExperience = append(c.inters.WorkExperience, interceptors...)
  3169. }
  3170. // Create returns a builder for creating a WorkExperience entity.
  3171. func (c *WorkExperienceClient) Create() *WorkExperienceCreate {
  3172. mutation := newWorkExperienceMutation(c.config, OpCreate)
  3173. return &WorkExperienceCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3174. }
  3175. // CreateBulk returns a builder for creating a bulk of WorkExperience entities.
  3176. func (c *WorkExperienceClient) CreateBulk(builders ...*WorkExperienceCreate) *WorkExperienceCreateBulk {
  3177. return &WorkExperienceCreateBulk{config: c.config, builders: builders}
  3178. }
  3179. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  3180. // a builder and applies setFunc on it.
  3181. func (c *WorkExperienceClient) MapCreateBulk(slice any, setFunc func(*WorkExperienceCreate, int)) *WorkExperienceCreateBulk {
  3182. rv := reflect.ValueOf(slice)
  3183. if rv.Kind() != reflect.Slice {
  3184. return &WorkExperienceCreateBulk{err: fmt.Errorf("calling to WorkExperienceClient.MapCreateBulk with wrong type %T, need slice", slice)}
  3185. }
  3186. builders := make([]*WorkExperienceCreate, rv.Len())
  3187. for i := 0; i < rv.Len(); i++ {
  3188. builders[i] = c.Create()
  3189. setFunc(builders[i], i)
  3190. }
  3191. return &WorkExperienceCreateBulk{config: c.config, builders: builders}
  3192. }
  3193. // Update returns an update builder for WorkExperience.
  3194. func (c *WorkExperienceClient) Update() *WorkExperienceUpdate {
  3195. mutation := newWorkExperienceMutation(c.config, OpUpdate)
  3196. return &WorkExperienceUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3197. }
  3198. // UpdateOne returns an update builder for the given entity.
  3199. func (c *WorkExperienceClient) UpdateOne(we *WorkExperience) *WorkExperienceUpdateOne {
  3200. mutation := newWorkExperienceMutation(c.config, OpUpdateOne, withWorkExperience(we))
  3201. return &WorkExperienceUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3202. }
  3203. // UpdateOneID returns an update builder for the given id.
  3204. func (c *WorkExperienceClient) UpdateOneID(id uint64) *WorkExperienceUpdateOne {
  3205. mutation := newWorkExperienceMutation(c.config, OpUpdateOne, withWorkExperienceID(id))
  3206. return &WorkExperienceUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3207. }
  3208. // Delete returns a delete builder for WorkExperience.
  3209. func (c *WorkExperienceClient) Delete() *WorkExperienceDelete {
  3210. mutation := newWorkExperienceMutation(c.config, OpDelete)
  3211. return &WorkExperienceDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3212. }
  3213. // DeleteOne returns a builder for deleting the given entity.
  3214. func (c *WorkExperienceClient) DeleteOne(we *WorkExperience) *WorkExperienceDeleteOne {
  3215. return c.DeleteOneID(we.ID)
  3216. }
  3217. // DeleteOneID returns a builder for deleting the given entity by its id.
  3218. func (c *WorkExperienceClient) DeleteOneID(id uint64) *WorkExperienceDeleteOne {
  3219. builder := c.Delete().Where(workexperience.ID(id))
  3220. builder.mutation.id = &id
  3221. builder.mutation.op = OpDeleteOne
  3222. return &WorkExperienceDeleteOne{builder}
  3223. }
  3224. // Query returns a query builder for WorkExperience.
  3225. func (c *WorkExperienceClient) Query() *WorkExperienceQuery {
  3226. return &WorkExperienceQuery{
  3227. config: c.config,
  3228. ctx: &QueryContext{Type: TypeWorkExperience},
  3229. inters: c.Interceptors(),
  3230. }
  3231. }
  3232. // Get returns a WorkExperience entity by its id.
  3233. func (c *WorkExperienceClient) Get(ctx context.Context, id uint64) (*WorkExperience, error) {
  3234. return c.Query().Where(workexperience.ID(id)).Only(ctx)
  3235. }
  3236. // GetX is like Get, but panics if an error occurs.
  3237. func (c *WorkExperienceClient) GetX(ctx context.Context, id uint64) *WorkExperience {
  3238. obj, err := c.Get(ctx, id)
  3239. if err != nil {
  3240. panic(err)
  3241. }
  3242. return obj
  3243. }
  3244. // QueryEmployee queries the employee edge of a WorkExperience.
  3245. func (c *WorkExperienceClient) QueryEmployee(we *WorkExperience) *EmployeeQuery {
  3246. query := (&EmployeeClient{config: c.config}).Query()
  3247. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  3248. id := we.ID
  3249. step := sqlgraph.NewStep(
  3250. sqlgraph.From(workexperience.Table, workexperience.FieldID, id),
  3251. sqlgraph.To(employee.Table, employee.FieldID),
  3252. sqlgraph.Edge(sqlgraph.M2O, true, workexperience.EmployeeTable, workexperience.EmployeeColumn),
  3253. )
  3254. fromV = sqlgraph.Neighbors(we.driver.Dialect(), step)
  3255. return fromV, nil
  3256. }
  3257. return query
  3258. }
  3259. // Hooks returns the client hooks.
  3260. func (c *WorkExperienceClient) Hooks() []Hook {
  3261. hooks := c.hooks.WorkExperience
  3262. return append(hooks[:len(hooks):len(hooks)], workexperience.Hooks[:]...)
  3263. }
  3264. // Interceptors returns the client interceptors.
  3265. func (c *WorkExperienceClient) Interceptors() []Interceptor {
  3266. inters := c.inters.WorkExperience
  3267. return append(inters[:len(inters):len(inters)], workexperience.Interceptors[:]...)
  3268. }
  3269. func (c *WorkExperienceClient) mutate(ctx context.Context, m *WorkExperienceMutation) (Value, error) {
  3270. switch m.Op() {
  3271. case OpCreate:
  3272. return (&WorkExperienceCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3273. case OpUpdate:
  3274. return (&WorkExperienceUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3275. case OpUpdateOne:
  3276. return (&WorkExperienceUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3277. case OpDelete, OpDeleteOne:
  3278. return (&WorkExperienceDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3279. default:
  3280. return nil, fmt.Errorf("ent: unknown WorkExperience mutation op: %q", m.Op())
  3281. }
  3282. }
  3283. // WxClient is a client for the Wx schema.
  3284. type WxClient struct {
  3285. config
  3286. }
  3287. // NewWxClient returns a client for the Wx from the given config.
  3288. func NewWxClient(c config) *WxClient {
  3289. return &WxClient{config: c}
  3290. }
  3291. // Use adds a list of mutation hooks to the hooks stack.
  3292. // A call to `Use(f, g, h)` equals to `wx.Hooks(f(g(h())))`.
  3293. func (c *WxClient) Use(hooks ...Hook) {
  3294. c.hooks.Wx = append(c.hooks.Wx, hooks...)
  3295. }
  3296. // Intercept adds a list of query interceptors to the interceptors stack.
  3297. // A call to `Intercept(f, g, h)` equals to `wx.Intercept(f(g(h())))`.
  3298. func (c *WxClient) Intercept(interceptors ...Interceptor) {
  3299. c.inters.Wx = append(c.inters.Wx, interceptors...)
  3300. }
  3301. // Create returns a builder for creating a Wx entity.
  3302. func (c *WxClient) Create() *WxCreate {
  3303. mutation := newWxMutation(c.config, OpCreate)
  3304. return &WxCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3305. }
  3306. // CreateBulk returns a builder for creating a bulk of Wx entities.
  3307. func (c *WxClient) CreateBulk(builders ...*WxCreate) *WxCreateBulk {
  3308. return &WxCreateBulk{config: c.config, builders: builders}
  3309. }
  3310. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  3311. // a builder and applies setFunc on it.
  3312. func (c *WxClient) MapCreateBulk(slice any, setFunc func(*WxCreate, int)) *WxCreateBulk {
  3313. rv := reflect.ValueOf(slice)
  3314. if rv.Kind() != reflect.Slice {
  3315. return &WxCreateBulk{err: fmt.Errorf("calling to WxClient.MapCreateBulk with wrong type %T, need slice", slice)}
  3316. }
  3317. builders := make([]*WxCreate, rv.Len())
  3318. for i := 0; i < rv.Len(); i++ {
  3319. builders[i] = c.Create()
  3320. setFunc(builders[i], i)
  3321. }
  3322. return &WxCreateBulk{config: c.config, builders: builders}
  3323. }
  3324. // Update returns an update builder for Wx.
  3325. func (c *WxClient) Update() *WxUpdate {
  3326. mutation := newWxMutation(c.config, OpUpdate)
  3327. return &WxUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3328. }
  3329. // UpdateOne returns an update builder for the given entity.
  3330. func (c *WxClient) UpdateOne(w *Wx) *WxUpdateOne {
  3331. mutation := newWxMutation(c.config, OpUpdateOne, withWx(w))
  3332. return &WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3333. }
  3334. // UpdateOneID returns an update builder for the given id.
  3335. func (c *WxClient) UpdateOneID(id uint64) *WxUpdateOne {
  3336. mutation := newWxMutation(c.config, OpUpdateOne, withWxID(id))
  3337. return &WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3338. }
  3339. // Delete returns a delete builder for Wx.
  3340. func (c *WxClient) Delete() *WxDelete {
  3341. mutation := newWxMutation(c.config, OpDelete)
  3342. return &WxDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3343. }
  3344. // DeleteOne returns a builder for deleting the given entity.
  3345. func (c *WxClient) DeleteOne(w *Wx) *WxDeleteOne {
  3346. return c.DeleteOneID(w.ID)
  3347. }
  3348. // DeleteOneID returns a builder for deleting the given entity by its id.
  3349. func (c *WxClient) DeleteOneID(id uint64) *WxDeleteOne {
  3350. builder := c.Delete().Where(wx.ID(id))
  3351. builder.mutation.id = &id
  3352. builder.mutation.op = OpDeleteOne
  3353. return &WxDeleteOne{builder}
  3354. }
  3355. // Query returns a query builder for Wx.
  3356. func (c *WxClient) Query() *WxQuery {
  3357. return &WxQuery{
  3358. config: c.config,
  3359. ctx: &QueryContext{Type: TypeWx},
  3360. inters: c.Interceptors(),
  3361. }
  3362. }
  3363. // Get returns a Wx entity by its id.
  3364. func (c *WxClient) Get(ctx context.Context, id uint64) (*Wx, error) {
  3365. return c.Query().Where(wx.ID(id)).Only(ctx)
  3366. }
  3367. // GetX is like Get, but panics if an error occurs.
  3368. func (c *WxClient) GetX(ctx context.Context, id uint64) *Wx {
  3369. obj, err := c.Get(ctx, id)
  3370. if err != nil {
  3371. panic(err)
  3372. }
  3373. return obj
  3374. }
  3375. // QueryServer queries the server edge of a Wx.
  3376. func (c *WxClient) QueryServer(w *Wx) *ServerQuery {
  3377. query := (&ServerClient{config: c.config}).Query()
  3378. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  3379. id := w.ID
  3380. step := sqlgraph.NewStep(
  3381. sqlgraph.From(wx.Table, wx.FieldID, id),
  3382. sqlgraph.To(server.Table, server.FieldID),
  3383. sqlgraph.Edge(sqlgraph.M2O, true, wx.ServerTable, wx.ServerColumn),
  3384. )
  3385. fromV = sqlgraph.Neighbors(w.driver.Dialect(), step)
  3386. return fromV, nil
  3387. }
  3388. return query
  3389. }
  3390. // QueryAgent queries the agent edge of a Wx.
  3391. func (c *WxClient) QueryAgent(w *Wx) *AgentQuery {
  3392. query := (&AgentClient{config: c.config}).Query()
  3393. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  3394. id := w.ID
  3395. step := sqlgraph.NewStep(
  3396. sqlgraph.From(wx.Table, wx.FieldID, id),
  3397. sqlgraph.To(agent.Table, agent.FieldID),
  3398. sqlgraph.Edge(sqlgraph.M2O, true, wx.AgentTable, wx.AgentColumn),
  3399. )
  3400. fromV = sqlgraph.Neighbors(w.driver.Dialect(), step)
  3401. return fromV, nil
  3402. }
  3403. return query
  3404. }
  3405. // Hooks returns the client hooks.
  3406. func (c *WxClient) Hooks() []Hook {
  3407. hooks := c.hooks.Wx
  3408. return append(hooks[:len(hooks):len(hooks)], wx.Hooks[:]...)
  3409. }
  3410. // Interceptors returns the client interceptors.
  3411. func (c *WxClient) Interceptors() []Interceptor {
  3412. inters := c.inters.Wx
  3413. return append(inters[:len(inters):len(inters)], wx.Interceptors[:]...)
  3414. }
  3415. func (c *WxClient) mutate(ctx context.Context, m *WxMutation) (Value, error) {
  3416. switch m.Op() {
  3417. case OpCreate:
  3418. return (&WxCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3419. case OpUpdate:
  3420. return (&WxUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3421. case OpUpdateOne:
  3422. return (&WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3423. case OpDelete, OpDeleteOne:
  3424. return (&WxDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3425. default:
  3426. return nil, fmt.Errorf("ent: unknown Wx mutation op: %q", m.Op())
  3427. }
  3428. }
  3429. // WxCardClient is a client for the WxCard schema.
  3430. type WxCardClient struct {
  3431. config
  3432. }
  3433. // NewWxCardClient returns a client for the WxCard from the given config.
  3434. func NewWxCardClient(c config) *WxCardClient {
  3435. return &WxCardClient{config: c}
  3436. }
  3437. // Use adds a list of mutation hooks to the hooks stack.
  3438. // A call to `Use(f, g, h)` equals to `wxcard.Hooks(f(g(h())))`.
  3439. func (c *WxCardClient) Use(hooks ...Hook) {
  3440. c.hooks.WxCard = append(c.hooks.WxCard, hooks...)
  3441. }
  3442. // Intercept adds a list of query interceptors to the interceptors stack.
  3443. // A call to `Intercept(f, g, h)` equals to `wxcard.Intercept(f(g(h())))`.
  3444. func (c *WxCardClient) Intercept(interceptors ...Interceptor) {
  3445. c.inters.WxCard = append(c.inters.WxCard, interceptors...)
  3446. }
  3447. // Create returns a builder for creating a WxCard entity.
  3448. func (c *WxCardClient) Create() *WxCardCreate {
  3449. mutation := newWxCardMutation(c.config, OpCreate)
  3450. return &WxCardCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3451. }
  3452. // CreateBulk returns a builder for creating a bulk of WxCard entities.
  3453. func (c *WxCardClient) CreateBulk(builders ...*WxCardCreate) *WxCardCreateBulk {
  3454. return &WxCardCreateBulk{config: c.config, builders: builders}
  3455. }
  3456. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  3457. // a builder and applies setFunc on it.
  3458. func (c *WxCardClient) MapCreateBulk(slice any, setFunc func(*WxCardCreate, int)) *WxCardCreateBulk {
  3459. rv := reflect.ValueOf(slice)
  3460. if rv.Kind() != reflect.Slice {
  3461. return &WxCardCreateBulk{err: fmt.Errorf("calling to WxCardClient.MapCreateBulk with wrong type %T, need slice", slice)}
  3462. }
  3463. builders := make([]*WxCardCreate, rv.Len())
  3464. for i := 0; i < rv.Len(); i++ {
  3465. builders[i] = c.Create()
  3466. setFunc(builders[i], i)
  3467. }
  3468. return &WxCardCreateBulk{config: c.config, builders: builders}
  3469. }
  3470. // Update returns an update builder for WxCard.
  3471. func (c *WxCardClient) Update() *WxCardUpdate {
  3472. mutation := newWxCardMutation(c.config, OpUpdate)
  3473. return &WxCardUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3474. }
  3475. // UpdateOne returns an update builder for the given entity.
  3476. func (c *WxCardClient) UpdateOne(wc *WxCard) *WxCardUpdateOne {
  3477. mutation := newWxCardMutation(c.config, OpUpdateOne, withWxCard(wc))
  3478. return &WxCardUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3479. }
  3480. // UpdateOneID returns an update builder for the given id.
  3481. func (c *WxCardClient) UpdateOneID(id uint64) *WxCardUpdateOne {
  3482. mutation := newWxCardMutation(c.config, OpUpdateOne, withWxCardID(id))
  3483. return &WxCardUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3484. }
  3485. // Delete returns a delete builder for WxCard.
  3486. func (c *WxCardClient) Delete() *WxCardDelete {
  3487. mutation := newWxCardMutation(c.config, OpDelete)
  3488. return &WxCardDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3489. }
  3490. // DeleteOne returns a builder for deleting the given entity.
  3491. func (c *WxCardClient) DeleteOne(wc *WxCard) *WxCardDeleteOne {
  3492. return c.DeleteOneID(wc.ID)
  3493. }
  3494. // DeleteOneID returns a builder for deleting the given entity by its id.
  3495. func (c *WxCardClient) DeleteOneID(id uint64) *WxCardDeleteOne {
  3496. builder := c.Delete().Where(wxcard.ID(id))
  3497. builder.mutation.id = &id
  3498. builder.mutation.op = OpDeleteOne
  3499. return &WxCardDeleteOne{builder}
  3500. }
  3501. // Query returns a query builder for WxCard.
  3502. func (c *WxCardClient) Query() *WxCardQuery {
  3503. return &WxCardQuery{
  3504. config: c.config,
  3505. ctx: &QueryContext{Type: TypeWxCard},
  3506. inters: c.Interceptors(),
  3507. }
  3508. }
  3509. // Get returns a WxCard entity by its id.
  3510. func (c *WxCardClient) Get(ctx context.Context, id uint64) (*WxCard, error) {
  3511. return c.Query().Where(wxcard.ID(id)).Only(ctx)
  3512. }
  3513. // GetX is like Get, but panics if an error occurs.
  3514. func (c *WxCardClient) GetX(ctx context.Context, id uint64) *WxCard {
  3515. obj, err := c.Get(ctx, id)
  3516. if err != nil {
  3517. panic(err)
  3518. }
  3519. return obj
  3520. }
  3521. // Hooks returns the client hooks.
  3522. func (c *WxCardClient) Hooks() []Hook {
  3523. hooks := c.hooks.WxCard
  3524. return append(hooks[:len(hooks):len(hooks)], wxcard.Hooks[:]...)
  3525. }
  3526. // Interceptors returns the client interceptors.
  3527. func (c *WxCardClient) Interceptors() []Interceptor {
  3528. inters := c.inters.WxCard
  3529. return append(inters[:len(inters):len(inters)], wxcard.Interceptors[:]...)
  3530. }
  3531. func (c *WxCardClient) mutate(ctx context.Context, m *WxCardMutation) (Value, error) {
  3532. switch m.Op() {
  3533. case OpCreate:
  3534. return (&WxCardCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3535. case OpUpdate:
  3536. return (&WxCardUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3537. case OpUpdateOne:
  3538. return (&WxCardUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3539. case OpDelete, OpDeleteOne:
  3540. return (&WxCardDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3541. default:
  3542. return nil, fmt.Errorf("ent: unknown WxCard mutation op: %q", m.Op())
  3543. }
  3544. }
  3545. // WxCardUserClient is a client for the WxCardUser schema.
  3546. type WxCardUserClient struct {
  3547. config
  3548. }
  3549. // NewWxCardUserClient returns a client for the WxCardUser from the given config.
  3550. func NewWxCardUserClient(c config) *WxCardUserClient {
  3551. return &WxCardUserClient{config: c}
  3552. }
  3553. // Use adds a list of mutation hooks to the hooks stack.
  3554. // A call to `Use(f, g, h)` equals to `wxcarduser.Hooks(f(g(h())))`.
  3555. func (c *WxCardUserClient) Use(hooks ...Hook) {
  3556. c.hooks.WxCardUser = append(c.hooks.WxCardUser, hooks...)
  3557. }
  3558. // Intercept adds a list of query interceptors to the interceptors stack.
  3559. // A call to `Intercept(f, g, h)` equals to `wxcarduser.Intercept(f(g(h())))`.
  3560. func (c *WxCardUserClient) Intercept(interceptors ...Interceptor) {
  3561. c.inters.WxCardUser = append(c.inters.WxCardUser, interceptors...)
  3562. }
  3563. // Create returns a builder for creating a WxCardUser entity.
  3564. func (c *WxCardUserClient) Create() *WxCardUserCreate {
  3565. mutation := newWxCardUserMutation(c.config, OpCreate)
  3566. return &WxCardUserCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3567. }
  3568. // CreateBulk returns a builder for creating a bulk of WxCardUser entities.
  3569. func (c *WxCardUserClient) CreateBulk(builders ...*WxCardUserCreate) *WxCardUserCreateBulk {
  3570. return &WxCardUserCreateBulk{config: c.config, builders: builders}
  3571. }
  3572. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  3573. // a builder and applies setFunc on it.
  3574. func (c *WxCardUserClient) MapCreateBulk(slice any, setFunc func(*WxCardUserCreate, int)) *WxCardUserCreateBulk {
  3575. rv := reflect.ValueOf(slice)
  3576. if rv.Kind() != reflect.Slice {
  3577. return &WxCardUserCreateBulk{err: fmt.Errorf("calling to WxCardUserClient.MapCreateBulk with wrong type %T, need slice", slice)}
  3578. }
  3579. builders := make([]*WxCardUserCreate, rv.Len())
  3580. for i := 0; i < rv.Len(); i++ {
  3581. builders[i] = c.Create()
  3582. setFunc(builders[i], i)
  3583. }
  3584. return &WxCardUserCreateBulk{config: c.config, builders: builders}
  3585. }
  3586. // Update returns an update builder for WxCardUser.
  3587. func (c *WxCardUserClient) Update() *WxCardUserUpdate {
  3588. mutation := newWxCardUserMutation(c.config, OpUpdate)
  3589. return &WxCardUserUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3590. }
  3591. // UpdateOne returns an update builder for the given entity.
  3592. func (c *WxCardUserClient) UpdateOne(wcu *WxCardUser) *WxCardUserUpdateOne {
  3593. mutation := newWxCardUserMutation(c.config, OpUpdateOne, withWxCardUser(wcu))
  3594. return &WxCardUserUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3595. }
  3596. // UpdateOneID returns an update builder for the given id.
  3597. func (c *WxCardUserClient) UpdateOneID(id uint64) *WxCardUserUpdateOne {
  3598. mutation := newWxCardUserMutation(c.config, OpUpdateOne, withWxCardUserID(id))
  3599. return &WxCardUserUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3600. }
  3601. // Delete returns a delete builder for WxCardUser.
  3602. func (c *WxCardUserClient) Delete() *WxCardUserDelete {
  3603. mutation := newWxCardUserMutation(c.config, OpDelete)
  3604. return &WxCardUserDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3605. }
  3606. // DeleteOne returns a builder for deleting the given entity.
  3607. func (c *WxCardUserClient) DeleteOne(wcu *WxCardUser) *WxCardUserDeleteOne {
  3608. return c.DeleteOneID(wcu.ID)
  3609. }
  3610. // DeleteOneID returns a builder for deleting the given entity by its id.
  3611. func (c *WxCardUserClient) DeleteOneID(id uint64) *WxCardUserDeleteOne {
  3612. builder := c.Delete().Where(wxcarduser.ID(id))
  3613. builder.mutation.id = &id
  3614. builder.mutation.op = OpDeleteOne
  3615. return &WxCardUserDeleteOne{builder}
  3616. }
  3617. // Query returns a query builder for WxCardUser.
  3618. func (c *WxCardUserClient) Query() *WxCardUserQuery {
  3619. return &WxCardUserQuery{
  3620. config: c.config,
  3621. ctx: &QueryContext{Type: TypeWxCardUser},
  3622. inters: c.Interceptors(),
  3623. }
  3624. }
  3625. // Get returns a WxCardUser entity by its id.
  3626. func (c *WxCardUserClient) Get(ctx context.Context, id uint64) (*WxCardUser, error) {
  3627. return c.Query().Where(wxcarduser.ID(id)).Only(ctx)
  3628. }
  3629. // GetX is like Get, but panics if an error occurs.
  3630. func (c *WxCardUserClient) GetX(ctx context.Context, id uint64) *WxCardUser {
  3631. obj, err := c.Get(ctx, id)
  3632. if err != nil {
  3633. panic(err)
  3634. }
  3635. return obj
  3636. }
  3637. // Hooks returns the client hooks.
  3638. func (c *WxCardUserClient) Hooks() []Hook {
  3639. hooks := c.hooks.WxCardUser
  3640. return append(hooks[:len(hooks):len(hooks)], wxcarduser.Hooks[:]...)
  3641. }
  3642. // Interceptors returns the client interceptors.
  3643. func (c *WxCardUserClient) Interceptors() []Interceptor {
  3644. inters := c.inters.WxCardUser
  3645. return append(inters[:len(inters):len(inters)], wxcarduser.Interceptors[:]...)
  3646. }
  3647. func (c *WxCardUserClient) mutate(ctx context.Context, m *WxCardUserMutation) (Value, error) {
  3648. switch m.Op() {
  3649. case OpCreate:
  3650. return (&WxCardUserCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3651. case OpUpdate:
  3652. return (&WxCardUserUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3653. case OpUpdateOne:
  3654. return (&WxCardUserUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3655. case OpDelete, OpDeleteOne:
  3656. return (&WxCardUserDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3657. default:
  3658. return nil, fmt.Errorf("ent: unknown WxCardUser mutation op: %q", m.Op())
  3659. }
  3660. }
  3661. // WxCardVisitClient is a client for the WxCardVisit schema.
  3662. type WxCardVisitClient struct {
  3663. config
  3664. }
  3665. // NewWxCardVisitClient returns a client for the WxCardVisit from the given config.
  3666. func NewWxCardVisitClient(c config) *WxCardVisitClient {
  3667. return &WxCardVisitClient{config: c}
  3668. }
  3669. // Use adds a list of mutation hooks to the hooks stack.
  3670. // A call to `Use(f, g, h)` equals to `wxcardvisit.Hooks(f(g(h())))`.
  3671. func (c *WxCardVisitClient) Use(hooks ...Hook) {
  3672. c.hooks.WxCardVisit = append(c.hooks.WxCardVisit, hooks...)
  3673. }
  3674. // Intercept adds a list of query interceptors to the interceptors stack.
  3675. // A call to `Intercept(f, g, h)` equals to `wxcardvisit.Intercept(f(g(h())))`.
  3676. func (c *WxCardVisitClient) Intercept(interceptors ...Interceptor) {
  3677. c.inters.WxCardVisit = append(c.inters.WxCardVisit, interceptors...)
  3678. }
  3679. // Create returns a builder for creating a WxCardVisit entity.
  3680. func (c *WxCardVisitClient) Create() *WxCardVisitCreate {
  3681. mutation := newWxCardVisitMutation(c.config, OpCreate)
  3682. return &WxCardVisitCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3683. }
  3684. // CreateBulk returns a builder for creating a bulk of WxCardVisit entities.
  3685. func (c *WxCardVisitClient) CreateBulk(builders ...*WxCardVisitCreate) *WxCardVisitCreateBulk {
  3686. return &WxCardVisitCreateBulk{config: c.config, builders: builders}
  3687. }
  3688. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  3689. // a builder and applies setFunc on it.
  3690. func (c *WxCardVisitClient) MapCreateBulk(slice any, setFunc func(*WxCardVisitCreate, int)) *WxCardVisitCreateBulk {
  3691. rv := reflect.ValueOf(slice)
  3692. if rv.Kind() != reflect.Slice {
  3693. return &WxCardVisitCreateBulk{err: fmt.Errorf("calling to WxCardVisitClient.MapCreateBulk with wrong type %T, need slice", slice)}
  3694. }
  3695. builders := make([]*WxCardVisitCreate, rv.Len())
  3696. for i := 0; i < rv.Len(); i++ {
  3697. builders[i] = c.Create()
  3698. setFunc(builders[i], i)
  3699. }
  3700. return &WxCardVisitCreateBulk{config: c.config, builders: builders}
  3701. }
  3702. // Update returns an update builder for WxCardVisit.
  3703. func (c *WxCardVisitClient) Update() *WxCardVisitUpdate {
  3704. mutation := newWxCardVisitMutation(c.config, OpUpdate)
  3705. return &WxCardVisitUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3706. }
  3707. // UpdateOne returns an update builder for the given entity.
  3708. func (c *WxCardVisitClient) UpdateOne(wcv *WxCardVisit) *WxCardVisitUpdateOne {
  3709. mutation := newWxCardVisitMutation(c.config, OpUpdateOne, withWxCardVisit(wcv))
  3710. return &WxCardVisitUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3711. }
  3712. // UpdateOneID returns an update builder for the given id.
  3713. func (c *WxCardVisitClient) UpdateOneID(id uint64) *WxCardVisitUpdateOne {
  3714. mutation := newWxCardVisitMutation(c.config, OpUpdateOne, withWxCardVisitID(id))
  3715. return &WxCardVisitUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3716. }
  3717. // Delete returns a delete builder for WxCardVisit.
  3718. func (c *WxCardVisitClient) Delete() *WxCardVisitDelete {
  3719. mutation := newWxCardVisitMutation(c.config, OpDelete)
  3720. return &WxCardVisitDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  3721. }
  3722. // DeleteOne returns a builder for deleting the given entity.
  3723. func (c *WxCardVisitClient) DeleteOne(wcv *WxCardVisit) *WxCardVisitDeleteOne {
  3724. return c.DeleteOneID(wcv.ID)
  3725. }
  3726. // DeleteOneID returns a builder for deleting the given entity by its id.
  3727. func (c *WxCardVisitClient) DeleteOneID(id uint64) *WxCardVisitDeleteOne {
  3728. builder := c.Delete().Where(wxcardvisit.ID(id))
  3729. builder.mutation.id = &id
  3730. builder.mutation.op = OpDeleteOne
  3731. return &WxCardVisitDeleteOne{builder}
  3732. }
  3733. // Query returns a query builder for WxCardVisit.
  3734. func (c *WxCardVisitClient) Query() *WxCardVisitQuery {
  3735. return &WxCardVisitQuery{
  3736. config: c.config,
  3737. ctx: &QueryContext{Type: TypeWxCardVisit},
  3738. inters: c.Interceptors(),
  3739. }
  3740. }
  3741. // Get returns a WxCardVisit entity by its id.
  3742. func (c *WxCardVisitClient) Get(ctx context.Context, id uint64) (*WxCardVisit, error) {
  3743. return c.Query().Where(wxcardvisit.ID(id)).Only(ctx)
  3744. }
  3745. // GetX is like Get, but panics if an error occurs.
  3746. func (c *WxCardVisitClient) GetX(ctx context.Context, id uint64) *WxCardVisit {
  3747. obj, err := c.Get(ctx, id)
  3748. if err != nil {
  3749. panic(err)
  3750. }
  3751. return obj
  3752. }
  3753. // Hooks returns the client hooks.
  3754. func (c *WxCardVisitClient) Hooks() []Hook {
  3755. hooks := c.hooks.WxCardVisit
  3756. return append(hooks[:len(hooks):len(hooks)], wxcardvisit.Hooks[:]...)
  3757. }
  3758. // Interceptors returns the client interceptors.
  3759. func (c *WxCardVisitClient) Interceptors() []Interceptor {
  3760. inters := c.inters.WxCardVisit
  3761. return append(inters[:len(inters):len(inters)], wxcardvisit.Interceptors[:]...)
  3762. }
  3763. func (c *WxCardVisitClient) mutate(ctx context.Context, m *WxCardVisitMutation) (Value, error) {
  3764. switch m.Op() {
  3765. case OpCreate:
  3766. return (&WxCardVisitCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3767. case OpUpdate:
  3768. return (&WxCardVisitUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3769. case OpUpdateOne:
  3770. return (&WxCardVisitUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  3771. case OpDelete, OpDeleteOne:
  3772. return (&WxCardVisitDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  3773. default:
  3774. return nil, fmt.Errorf("ent: unknown WxCardVisit mutation op: %q", m.Op())
  3775. }
  3776. }
  3777. // hooks and interceptors per client, for fast access.
  3778. type (
  3779. hooks struct {
  3780. Agent, AgentBase, AliyunAvatar, BatchMsg, Category, ChatRecords, ChatSession,
  3781. Contact, Employee, EmployeeConfig, Label, LabelRelationship, Message,
  3782. MessageRecords, Msg, Server, SopNode, SopStage, SopTask, Token, Tutorial,
  3783. WorkExperience, Wx, WxCard, WxCardUser, WxCardVisit []ent.Hook
  3784. }
  3785. inters struct {
  3786. Agent, AgentBase, AliyunAvatar, BatchMsg, Category, ChatRecords, ChatSession,
  3787. Contact, Employee, EmployeeConfig, Label, LabelRelationship, Message,
  3788. MessageRecords, Msg, Server, SopNode, SopStage, SopTask, Token, Tutorial,
  3789. WorkExperience, Wx, WxCard, WxCardUser, WxCardVisit []ent.Interceptor
  3790. }
  3791. )
  3792. // ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it.
  3793. // See, database/sql#DB.ExecContext for more information.
  3794. func (c *config) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error) {
  3795. ex, ok := c.driver.(interface {
  3796. ExecContext(context.Context, string, ...any) (stdsql.Result, error)
  3797. })
  3798. if !ok {
  3799. return nil, fmt.Errorf("Driver.ExecContext is not supported")
  3800. }
  3801. return ex.ExecContext(ctx, query, args...)
  3802. }
  3803. // QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it.
  3804. // See, database/sql#DB.QueryContext for more information.
  3805. func (c *config) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error) {
  3806. q, ok := c.driver.(interface {
  3807. QueryContext(context.Context, string, ...any) (*stdsql.Rows, error)
  3808. })
  3809. if !ok {
  3810. return nil, fmt.Errorf("Driver.QueryContext is not supported")
  3811. }
  3812. return q.QueryContext(ctx, query, args...)
  3813. }