employee_create.go 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "time"
  8. "wechat-api/ent/employee"
  9. "wechat-api/ent/tutorial"
  10. "wechat-api/ent/workexperience"
  11. "entgo.io/ent/dialect/sql"
  12. "entgo.io/ent/dialect/sql/sqlgraph"
  13. "entgo.io/ent/schema/field"
  14. )
  15. // EmployeeCreate is the builder for creating a Employee entity.
  16. type EmployeeCreate struct {
  17. config
  18. mutation *EmployeeMutation
  19. hooks []Hook
  20. conflict []sql.ConflictOption
  21. }
  22. // SetCreatedAt sets the "created_at" field.
  23. func (ec *EmployeeCreate) SetCreatedAt(t time.Time) *EmployeeCreate {
  24. ec.mutation.SetCreatedAt(t)
  25. return ec
  26. }
  27. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  28. func (ec *EmployeeCreate) SetNillableCreatedAt(t *time.Time) *EmployeeCreate {
  29. if t != nil {
  30. ec.SetCreatedAt(*t)
  31. }
  32. return ec
  33. }
  34. // SetUpdatedAt sets the "updated_at" field.
  35. func (ec *EmployeeCreate) SetUpdatedAt(t time.Time) *EmployeeCreate {
  36. ec.mutation.SetUpdatedAt(t)
  37. return ec
  38. }
  39. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  40. func (ec *EmployeeCreate) SetNillableUpdatedAt(t *time.Time) *EmployeeCreate {
  41. if t != nil {
  42. ec.SetUpdatedAt(*t)
  43. }
  44. return ec
  45. }
  46. // SetDeletedAt sets the "deleted_at" field.
  47. func (ec *EmployeeCreate) SetDeletedAt(t time.Time) *EmployeeCreate {
  48. ec.mutation.SetDeletedAt(t)
  49. return ec
  50. }
  51. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  52. func (ec *EmployeeCreate) SetNillableDeletedAt(t *time.Time) *EmployeeCreate {
  53. if t != nil {
  54. ec.SetDeletedAt(*t)
  55. }
  56. return ec
  57. }
  58. // SetTitle sets the "title" field.
  59. func (ec *EmployeeCreate) SetTitle(s string) *EmployeeCreate {
  60. ec.mutation.SetTitle(s)
  61. return ec
  62. }
  63. // SetAvatar sets the "avatar" field.
  64. func (ec *EmployeeCreate) SetAvatar(s string) *EmployeeCreate {
  65. ec.mutation.SetAvatar(s)
  66. return ec
  67. }
  68. // SetTags sets the "tags" field.
  69. func (ec *EmployeeCreate) SetTags(s string) *EmployeeCreate {
  70. ec.mutation.SetTags(s)
  71. return ec
  72. }
  73. // SetHireCount sets the "hire_count" field.
  74. func (ec *EmployeeCreate) SetHireCount(i int) *EmployeeCreate {
  75. ec.mutation.SetHireCount(i)
  76. return ec
  77. }
  78. // SetNillableHireCount sets the "hire_count" field if the given value is not nil.
  79. func (ec *EmployeeCreate) SetNillableHireCount(i *int) *EmployeeCreate {
  80. if i != nil {
  81. ec.SetHireCount(*i)
  82. }
  83. return ec
  84. }
  85. // SetServiceCount sets the "service_count" field.
  86. func (ec *EmployeeCreate) SetServiceCount(i int) *EmployeeCreate {
  87. ec.mutation.SetServiceCount(i)
  88. return ec
  89. }
  90. // SetNillableServiceCount sets the "service_count" field if the given value is not nil.
  91. func (ec *EmployeeCreate) SetNillableServiceCount(i *int) *EmployeeCreate {
  92. if i != nil {
  93. ec.SetServiceCount(*i)
  94. }
  95. return ec
  96. }
  97. // SetAchievementCount sets the "achievement_count" field.
  98. func (ec *EmployeeCreate) SetAchievementCount(i int) *EmployeeCreate {
  99. ec.mutation.SetAchievementCount(i)
  100. return ec
  101. }
  102. // SetNillableAchievementCount sets the "achievement_count" field if the given value is not nil.
  103. func (ec *EmployeeCreate) SetNillableAchievementCount(i *int) *EmployeeCreate {
  104. if i != nil {
  105. ec.SetAchievementCount(*i)
  106. }
  107. return ec
  108. }
  109. // SetIntro sets the "intro" field.
  110. func (ec *EmployeeCreate) SetIntro(s string) *EmployeeCreate {
  111. ec.mutation.SetIntro(s)
  112. return ec
  113. }
  114. // SetNillableIntro sets the "intro" field if the given value is not nil.
  115. func (ec *EmployeeCreate) SetNillableIntro(s *string) *EmployeeCreate {
  116. if s != nil {
  117. ec.SetIntro(*s)
  118. }
  119. return ec
  120. }
  121. // SetEstimate sets the "estimate" field.
  122. func (ec *EmployeeCreate) SetEstimate(s string) *EmployeeCreate {
  123. ec.mutation.SetEstimate(s)
  124. return ec
  125. }
  126. // SetNillableEstimate sets the "estimate" field if the given value is not nil.
  127. func (ec *EmployeeCreate) SetNillableEstimate(s *string) *EmployeeCreate {
  128. if s != nil {
  129. ec.SetEstimate(*s)
  130. }
  131. return ec
  132. }
  133. // SetSkill sets the "skill" field.
  134. func (ec *EmployeeCreate) SetSkill(s string) *EmployeeCreate {
  135. ec.mutation.SetSkill(s)
  136. return ec
  137. }
  138. // SetNillableSkill sets the "skill" field if the given value is not nil.
  139. func (ec *EmployeeCreate) SetNillableSkill(s *string) *EmployeeCreate {
  140. if s != nil {
  141. ec.SetSkill(*s)
  142. }
  143. return ec
  144. }
  145. // SetAbilityType sets the "ability_type" field.
  146. func (ec *EmployeeCreate) SetAbilityType(s string) *EmployeeCreate {
  147. ec.mutation.SetAbilityType(s)
  148. return ec
  149. }
  150. // SetNillableAbilityType sets the "ability_type" field if the given value is not nil.
  151. func (ec *EmployeeCreate) SetNillableAbilityType(s *string) *EmployeeCreate {
  152. if s != nil {
  153. ec.SetAbilityType(*s)
  154. }
  155. return ec
  156. }
  157. // SetScene sets the "scene" field.
  158. func (ec *EmployeeCreate) SetScene(s string) *EmployeeCreate {
  159. ec.mutation.SetScene(s)
  160. return ec
  161. }
  162. // SetNillableScene sets the "scene" field if the given value is not nil.
  163. func (ec *EmployeeCreate) SetNillableScene(s *string) *EmployeeCreate {
  164. if s != nil {
  165. ec.SetScene(*s)
  166. }
  167. return ec
  168. }
  169. // SetSwitchIn sets the "switch_in" field.
  170. func (ec *EmployeeCreate) SetSwitchIn(s string) *EmployeeCreate {
  171. ec.mutation.SetSwitchIn(s)
  172. return ec
  173. }
  174. // SetNillableSwitchIn sets the "switch_in" field if the given value is not nil.
  175. func (ec *EmployeeCreate) SetNillableSwitchIn(s *string) *EmployeeCreate {
  176. if s != nil {
  177. ec.SetSwitchIn(*s)
  178. }
  179. return ec
  180. }
  181. // SetVideoURL sets the "video_url" field.
  182. func (ec *EmployeeCreate) SetVideoURL(s string) *EmployeeCreate {
  183. ec.mutation.SetVideoURL(s)
  184. return ec
  185. }
  186. // SetNillableVideoURL sets the "video_url" field if the given value is not nil.
  187. func (ec *EmployeeCreate) SetNillableVideoURL(s *string) *EmployeeCreate {
  188. if s != nil {
  189. ec.SetVideoURL(*s)
  190. }
  191. return ec
  192. }
  193. // SetOrganizationID sets the "organization_id" field.
  194. func (ec *EmployeeCreate) SetOrganizationID(u uint64) *EmployeeCreate {
  195. ec.mutation.SetOrganizationID(u)
  196. return ec
  197. }
  198. // SetID sets the "id" field.
  199. func (ec *EmployeeCreate) SetID(u uint64) *EmployeeCreate {
  200. ec.mutation.SetID(u)
  201. return ec
  202. }
  203. // AddEmWorkExperienceIDs adds the "em_work_experiences" edge to the WorkExperience entity by IDs.
  204. func (ec *EmployeeCreate) AddEmWorkExperienceIDs(ids ...uint64) *EmployeeCreate {
  205. ec.mutation.AddEmWorkExperienceIDs(ids...)
  206. return ec
  207. }
  208. // AddEmWorkExperiences adds the "em_work_experiences" edges to the WorkExperience entity.
  209. func (ec *EmployeeCreate) AddEmWorkExperiences(w ...*WorkExperience) *EmployeeCreate {
  210. ids := make([]uint64, len(w))
  211. for i := range w {
  212. ids[i] = w[i].ID
  213. }
  214. return ec.AddEmWorkExperienceIDs(ids...)
  215. }
  216. // AddEmTutorialIDs adds the "em_tutorial" edge to the Tutorial entity by IDs.
  217. func (ec *EmployeeCreate) AddEmTutorialIDs(ids ...uint64) *EmployeeCreate {
  218. ec.mutation.AddEmTutorialIDs(ids...)
  219. return ec
  220. }
  221. // AddEmTutorial adds the "em_tutorial" edges to the Tutorial entity.
  222. func (ec *EmployeeCreate) AddEmTutorial(t ...*Tutorial) *EmployeeCreate {
  223. ids := make([]uint64, len(t))
  224. for i := range t {
  225. ids[i] = t[i].ID
  226. }
  227. return ec.AddEmTutorialIDs(ids...)
  228. }
  229. // Mutation returns the EmployeeMutation object of the builder.
  230. func (ec *EmployeeCreate) Mutation() *EmployeeMutation {
  231. return ec.mutation
  232. }
  233. // Save creates the Employee in the database.
  234. func (ec *EmployeeCreate) Save(ctx context.Context) (*Employee, error) {
  235. if err := ec.defaults(); err != nil {
  236. return nil, err
  237. }
  238. return withHooks(ctx, ec.sqlSave, ec.mutation, ec.hooks)
  239. }
  240. // SaveX calls Save and panics if Save returns an error.
  241. func (ec *EmployeeCreate) SaveX(ctx context.Context) *Employee {
  242. v, err := ec.Save(ctx)
  243. if err != nil {
  244. panic(err)
  245. }
  246. return v
  247. }
  248. // Exec executes the query.
  249. func (ec *EmployeeCreate) Exec(ctx context.Context) error {
  250. _, err := ec.Save(ctx)
  251. return err
  252. }
  253. // ExecX is like Exec, but panics if an error occurs.
  254. func (ec *EmployeeCreate) ExecX(ctx context.Context) {
  255. if err := ec.Exec(ctx); err != nil {
  256. panic(err)
  257. }
  258. }
  259. // defaults sets the default values of the builder before save.
  260. func (ec *EmployeeCreate) defaults() error {
  261. if _, ok := ec.mutation.CreatedAt(); !ok {
  262. if employee.DefaultCreatedAt == nil {
  263. return fmt.Errorf("ent: uninitialized employee.DefaultCreatedAt (forgotten import ent/runtime?)")
  264. }
  265. v := employee.DefaultCreatedAt()
  266. ec.mutation.SetCreatedAt(v)
  267. }
  268. if _, ok := ec.mutation.UpdatedAt(); !ok {
  269. if employee.DefaultUpdatedAt == nil {
  270. return fmt.Errorf("ent: uninitialized employee.DefaultUpdatedAt (forgotten import ent/runtime?)")
  271. }
  272. v := employee.DefaultUpdatedAt()
  273. ec.mutation.SetUpdatedAt(v)
  274. }
  275. if _, ok := ec.mutation.HireCount(); !ok {
  276. v := employee.DefaultHireCount
  277. ec.mutation.SetHireCount(v)
  278. }
  279. if _, ok := ec.mutation.ServiceCount(); !ok {
  280. v := employee.DefaultServiceCount
  281. ec.mutation.SetServiceCount(v)
  282. }
  283. if _, ok := ec.mutation.AchievementCount(); !ok {
  284. v := employee.DefaultAchievementCount
  285. ec.mutation.SetAchievementCount(v)
  286. }
  287. if _, ok := ec.mutation.Intro(); !ok {
  288. v := employee.DefaultIntro
  289. ec.mutation.SetIntro(v)
  290. }
  291. if _, ok := ec.mutation.Estimate(); !ok {
  292. v := employee.DefaultEstimate
  293. ec.mutation.SetEstimate(v)
  294. }
  295. if _, ok := ec.mutation.Skill(); !ok {
  296. v := employee.DefaultSkill
  297. ec.mutation.SetSkill(v)
  298. }
  299. if _, ok := ec.mutation.AbilityType(); !ok {
  300. v := employee.DefaultAbilityType
  301. ec.mutation.SetAbilityType(v)
  302. }
  303. if _, ok := ec.mutation.Scene(); !ok {
  304. v := employee.DefaultScene
  305. ec.mutation.SetScene(v)
  306. }
  307. if _, ok := ec.mutation.SwitchIn(); !ok {
  308. v := employee.DefaultSwitchIn
  309. ec.mutation.SetSwitchIn(v)
  310. }
  311. if _, ok := ec.mutation.VideoURL(); !ok {
  312. v := employee.DefaultVideoURL
  313. ec.mutation.SetVideoURL(v)
  314. }
  315. return nil
  316. }
  317. // check runs all checks and user-defined validators on the builder.
  318. func (ec *EmployeeCreate) check() error {
  319. if _, ok := ec.mutation.CreatedAt(); !ok {
  320. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Employee.created_at"`)}
  321. }
  322. if _, ok := ec.mutation.UpdatedAt(); !ok {
  323. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Employee.updated_at"`)}
  324. }
  325. if _, ok := ec.mutation.Title(); !ok {
  326. return &ValidationError{Name: "title", err: errors.New(`ent: missing required field "Employee.title"`)}
  327. }
  328. if v, ok := ec.mutation.Title(); ok {
  329. if err := employee.TitleValidator(v); err != nil {
  330. return &ValidationError{Name: "title", err: fmt.Errorf(`ent: validator failed for field "Employee.title": %w`, err)}
  331. }
  332. }
  333. if _, ok := ec.mutation.Avatar(); !ok {
  334. return &ValidationError{Name: "avatar", err: errors.New(`ent: missing required field "Employee.avatar"`)}
  335. }
  336. if v, ok := ec.mutation.Avatar(); ok {
  337. if err := employee.AvatarValidator(v); err != nil {
  338. return &ValidationError{Name: "avatar", err: fmt.Errorf(`ent: validator failed for field "Employee.avatar": %w`, err)}
  339. }
  340. }
  341. if _, ok := ec.mutation.Tags(); !ok {
  342. return &ValidationError{Name: "tags", err: errors.New(`ent: missing required field "Employee.tags"`)}
  343. }
  344. if v, ok := ec.mutation.Tags(); ok {
  345. if err := employee.TagsValidator(v); err != nil {
  346. return &ValidationError{Name: "tags", err: fmt.Errorf(`ent: validator failed for field "Employee.tags": %w`, err)}
  347. }
  348. }
  349. if _, ok := ec.mutation.HireCount(); !ok {
  350. return &ValidationError{Name: "hire_count", err: errors.New(`ent: missing required field "Employee.hire_count"`)}
  351. }
  352. if v, ok := ec.mutation.HireCount(); ok {
  353. if err := employee.HireCountValidator(v); err != nil {
  354. return &ValidationError{Name: "hire_count", err: fmt.Errorf(`ent: validator failed for field "Employee.hire_count": %w`, err)}
  355. }
  356. }
  357. if _, ok := ec.mutation.ServiceCount(); !ok {
  358. return &ValidationError{Name: "service_count", err: errors.New(`ent: missing required field "Employee.service_count"`)}
  359. }
  360. if v, ok := ec.mutation.ServiceCount(); ok {
  361. if err := employee.ServiceCountValidator(v); err != nil {
  362. return &ValidationError{Name: "service_count", err: fmt.Errorf(`ent: validator failed for field "Employee.service_count": %w`, err)}
  363. }
  364. }
  365. if _, ok := ec.mutation.AchievementCount(); !ok {
  366. return &ValidationError{Name: "achievement_count", err: errors.New(`ent: missing required field "Employee.achievement_count"`)}
  367. }
  368. if v, ok := ec.mutation.AchievementCount(); ok {
  369. if err := employee.AchievementCountValidator(v); err != nil {
  370. return &ValidationError{Name: "achievement_count", err: fmt.Errorf(`ent: validator failed for field "Employee.achievement_count": %w`, err)}
  371. }
  372. }
  373. if _, ok := ec.mutation.Intro(); !ok {
  374. return &ValidationError{Name: "intro", err: errors.New(`ent: missing required field "Employee.intro"`)}
  375. }
  376. if v, ok := ec.mutation.Intro(); ok {
  377. if err := employee.IntroValidator(v); err != nil {
  378. return &ValidationError{Name: "intro", err: fmt.Errorf(`ent: validator failed for field "Employee.intro": %w`, err)}
  379. }
  380. }
  381. if _, ok := ec.mutation.Estimate(); !ok {
  382. return &ValidationError{Name: "estimate", err: errors.New(`ent: missing required field "Employee.estimate"`)}
  383. }
  384. if v, ok := ec.mutation.Estimate(); ok {
  385. if err := employee.EstimateValidator(v); err != nil {
  386. return &ValidationError{Name: "estimate", err: fmt.Errorf(`ent: validator failed for field "Employee.estimate": %w`, err)}
  387. }
  388. }
  389. if _, ok := ec.mutation.Skill(); !ok {
  390. return &ValidationError{Name: "skill", err: errors.New(`ent: missing required field "Employee.skill"`)}
  391. }
  392. if v, ok := ec.mutation.Skill(); ok {
  393. if err := employee.SkillValidator(v); err != nil {
  394. return &ValidationError{Name: "skill", err: fmt.Errorf(`ent: validator failed for field "Employee.skill": %w`, err)}
  395. }
  396. }
  397. if _, ok := ec.mutation.AbilityType(); !ok {
  398. return &ValidationError{Name: "ability_type", err: errors.New(`ent: missing required field "Employee.ability_type"`)}
  399. }
  400. if _, ok := ec.mutation.Scene(); !ok {
  401. return &ValidationError{Name: "scene", err: errors.New(`ent: missing required field "Employee.scene"`)}
  402. }
  403. if _, ok := ec.mutation.SwitchIn(); !ok {
  404. return &ValidationError{Name: "switch_in", err: errors.New(`ent: missing required field "Employee.switch_in"`)}
  405. }
  406. if _, ok := ec.mutation.VideoURL(); !ok {
  407. return &ValidationError{Name: "video_url", err: errors.New(`ent: missing required field "Employee.video_url"`)}
  408. }
  409. if v, ok := ec.mutation.VideoURL(); ok {
  410. if err := employee.VideoURLValidator(v); err != nil {
  411. return &ValidationError{Name: "video_url", err: fmt.Errorf(`ent: validator failed for field "Employee.video_url": %w`, err)}
  412. }
  413. }
  414. if _, ok := ec.mutation.OrganizationID(); !ok {
  415. return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "Employee.organization_id"`)}
  416. }
  417. if v, ok := ec.mutation.OrganizationID(); ok {
  418. if err := employee.OrganizationIDValidator(v); err != nil {
  419. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Employee.organization_id": %w`, err)}
  420. }
  421. }
  422. return nil
  423. }
  424. func (ec *EmployeeCreate) sqlSave(ctx context.Context) (*Employee, error) {
  425. if err := ec.check(); err != nil {
  426. return nil, err
  427. }
  428. _node, _spec := ec.createSpec()
  429. if err := sqlgraph.CreateNode(ctx, ec.driver, _spec); err != nil {
  430. if sqlgraph.IsConstraintError(err) {
  431. err = &ConstraintError{msg: err.Error(), wrap: err}
  432. }
  433. return nil, err
  434. }
  435. if _spec.ID.Value != _node.ID {
  436. id := _spec.ID.Value.(int64)
  437. _node.ID = uint64(id)
  438. }
  439. ec.mutation.id = &_node.ID
  440. ec.mutation.done = true
  441. return _node, nil
  442. }
  443. func (ec *EmployeeCreate) createSpec() (*Employee, *sqlgraph.CreateSpec) {
  444. var (
  445. _node = &Employee{config: ec.config}
  446. _spec = sqlgraph.NewCreateSpec(employee.Table, sqlgraph.NewFieldSpec(employee.FieldID, field.TypeUint64))
  447. )
  448. _spec.OnConflict = ec.conflict
  449. if id, ok := ec.mutation.ID(); ok {
  450. _node.ID = id
  451. _spec.ID.Value = id
  452. }
  453. if value, ok := ec.mutation.CreatedAt(); ok {
  454. _spec.SetField(employee.FieldCreatedAt, field.TypeTime, value)
  455. _node.CreatedAt = value
  456. }
  457. if value, ok := ec.mutation.UpdatedAt(); ok {
  458. _spec.SetField(employee.FieldUpdatedAt, field.TypeTime, value)
  459. _node.UpdatedAt = value
  460. }
  461. if value, ok := ec.mutation.DeletedAt(); ok {
  462. _spec.SetField(employee.FieldDeletedAt, field.TypeTime, value)
  463. _node.DeletedAt = value
  464. }
  465. if value, ok := ec.mutation.Title(); ok {
  466. _spec.SetField(employee.FieldTitle, field.TypeString, value)
  467. _node.Title = value
  468. }
  469. if value, ok := ec.mutation.Avatar(); ok {
  470. _spec.SetField(employee.FieldAvatar, field.TypeString, value)
  471. _node.Avatar = value
  472. }
  473. if value, ok := ec.mutation.Tags(); ok {
  474. _spec.SetField(employee.FieldTags, field.TypeString, value)
  475. _node.Tags = value
  476. }
  477. if value, ok := ec.mutation.HireCount(); ok {
  478. _spec.SetField(employee.FieldHireCount, field.TypeInt, value)
  479. _node.HireCount = value
  480. }
  481. if value, ok := ec.mutation.ServiceCount(); ok {
  482. _spec.SetField(employee.FieldServiceCount, field.TypeInt, value)
  483. _node.ServiceCount = value
  484. }
  485. if value, ok := ec.mutation.AchievementCount(); ok {
  486. _spec.SetField(employee.FieldAchievementCount, field.TypeInt, value)
  487. _node.AchievementCount = value
  488. }
  489. if value, ok := ec.mutation.Intro(); ok {
  490. _spec.SetField(employee.FieldIntro, field.TypeString, value)
  491. _node.Intro = value
  492. }
  493. if value, ok := ec.mutation.Estimate(); ok {
  494. _spec.SetField(employee.FieldEstimate, field.TypeString, value)
  495. _node.Estimate = value
  496. }
  497. if value, ok := ec.mutation.Skill(); ok {
  498. _spec.SetField(employee.FieldSkill, field.TypeString, value)
  499. _node.Skill = value
  500. }
  501. if value, ok := ec.mutation.AbilityType(); ok {
  502. _spec.SetField(employee.FieldAbilityType, field.TypeString, value)
  503. _node.AbilityType = value
  504. }
  505. if value, ok := ec.mutation.Scene(); ok {
  506. _spec.SetField(employee.FieldScene, field.TypeString, value)
  507. _node.Scene = value
  508. }
  509. if value, ok := ec.mutation.SwitchIn(); ok {
  510. _spec.SetField(employee.FieldSwitchIn, field.TypeString, value)
  511. _node.SwitchIn = value
  512. }
  513. if value, ok := ec.mutation.VideoURL(); ok {
  514. _spec.SetField(employee.FieldVideoURL, field.TypeString, value)
  515. _node.VideoURL = value
  516. }
  517. if value, ok := ec.mutation.OrganizationID(); ok {
  518. _spec.SetField(employee.FieldOrganizationID, field.TypeUint64, value)
  519. _node.OrganizationID = value
  520. }
  521. if nodes := ec.mutation.EmWorkExperiencesIDs(); len(nodes) > 0 {
  522. edge := &sqlgraph.EdgeSpec{
  523. Rel: sqlgraph.O2M,
  524. Inverse: false,
  525. Table: employee.EmWorkExperiencesTable,
  526. Columns: []string{employee.EmWorkExperiencesColumn},
  527. Bidi: false,
  528. Target: &sqlgraph.EdgeTarget{
  529. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  530. },
  531. }
  532. for _, k := range nodes {
  533. edge.Target.Nodes = append(edge.Target.Nodes, k)
  534. }
  535. _spec.Edges = append(_spec.Edges, edge)
  536. }
  537. if nodes := ec.mutation.EmTutorialIDs(); len(nodes) > 0 {
  538. edge := &sqlgraph.EdgeSpec{
  539. Rel: sqlgraph.O2M,
  540. Inverse: false,
  541. Table: employee.EmTutorialTable,
  542. Columns: []string{employee.EmTutorialColumn},
  543. Bidi: false,
  544. Target: &sqlgraph.EdgeTarget{
  545. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  546. },
  547. }
  548. for _, k := range nodes {
  549. edge.Target.Nodes = append(edge.Target.Nodes, k)
  550. }
  551. _spec.Edges = append(_spec.Edges, edge)
  552. }
  553. return _node, _spec
  554. }
  555. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  556. // of the `INSERT` statement. For example:
  557. //
  558. // client.Employee.Create().
  559. // SetCreatedAt(v).
  560. // OnConflict(
  561. // // Update the row with the new values
  562. // // the was proposed for insertion.
  563. // sql.ResolveWithNewValues(),
  564. // ).
  565. // // Override some of the fields with custom
  566. // // update values.
  567. // Update(func(u *ent.EmployeeUpsert) {
  568. // SetCreatedAt(v+v).
  569. // }).
  570. // Exec(ctx)
  571. func (ec *EmployeeCreate) OnConflict(opts ...sql.ConflictOption) *EmployeeUpsertOne {
  572. ec.conflict = opts
  573. return &EmployeeUpsertOne{
  574. create: ec,
  575. }
  576. }
  577. // OnConflictColumns calls `OnConflict` and configures the columns
  578. // as conflict target. Using this option is equivalent to using:
  579. //
  580. // client.Employee.Create().
  581. // OnConflict(sql.ConflictColumns(columns...)).
  582. // Exec(ctx)
  583. func (ec *EmployeeCreate) OnConflictColumns(columns ...string) *EmployeeUpsertOne {
  584. ec.conflict = append(ec.conflict, sql.ConflictColumns(columns...))
  585. return &EmployeeUpsertOne{
  586. create: ec,
  587. }
  588. }
  589. type (
  590. // EmployeeUpsertOne is the builder for "upsert"-ing
  591. // one Employee node.
  592. EmployeeUpsertOne struct {
  593. create *EmployeeCreate
  594. }
  595. // EmployeeUpsert is the "OnConflict" setter.
  596. EmployeeUpsert struct {
  597. *sql.UpdateSet
  598. }
  599. )
  600. // SetUpdatedAt sets the "updated_at" field.
  601. func (u *EmployeeUpsert) SetUpdatedAt(v time.Time) *EmployeeUpsert {
  602. u.Set(employee.FieldUpdatedAt, v)
  603. return u
  604. }
  605. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  606. func (u *EmployeeUpsert) UpdateUpdatedAt() *EmployeeUpsert {
  607. u.SetExcluded(employee.FieldUpdatedAt)
  608. return u
  609. }
  610. // SetDeletedAt sets the "deleted_at" field.
  611. func (u *EmployeeUpsert) SetDeletedAt(v time.Time) *EmployeeUpsert {
  612. u.Set(employee.FieldDeletedAt, v)
  613. return u
  614. }
  615. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  616. func (u *EmployeeUpsert) UpdateDeletedAt() *EmployeeUpsert {
  617. u.SetExcluded(employee.FieldDeletedAt)
  618. return u
  619. }
  620. // ClearDeletedAt clears the value of the "deleted_at" field.
  621. func (u *EmployeeUpsert) ClearDeletedAt() *EmployeeUpsert {
  622. u.SetNull(employee.FieldDeletedAt)
  623. return u
  624. }
  625. // SetTitle sets the "title" field.
  626. func (u *EmployeeUpsert) SetTitle(v string) *EmployeeUpsert {
  627. u.Set(employee.FieldTitle, v)
  628. return u
  629. }
  630. // UpdateTitle sets the "title" field to the value that was provided on create.
  631. func (u *EmployeeUpsert) UpdateTitle() *EmployeeUpsert {
  632. u.SetExcluded(employee.FieldTitle)
  633. return u
  634. }
  635. // SetAvatar sets the "avatar" field.
  636. func (u *EmployeeUpsert) SetAvatar(v string) *EmployeeUpsert {
  637. u.Set(employee.FieldAvatar, v)
  638. return u
  639. }
  640. // UpdateAvatar sets the "avatar" field to the value that was provided on create.
  641. func (u *EmployeeUpsert) UpdateAvatar() *EmployeeUpsert {
  642. u.SetExcluded(employee.FieldAvatar)
  643. return u
  644. }
  645. // SetTags sets the "tags" field.
  646. func (u *EmployeeUpsert) SetTags(v string) *EmployeeUpsert {
  647. u.Set(employee.FieldTags, v)
  648. return u
  649. }
  650. // UpdateTags sets the "tags" field to the value that was provided on create.
  651. func (u *EmployeeUpsert) UpdateTags() *EmployeeUpsert {
  652. u.SetExcluded(employee.FieldTags)
  653. return u
  654. }
  655. // SetHireCount sets the "hire_count" field.
  656. func (u *EmployeeUpsert) SetHireCount(v int) *EmployeeUpsert {
  657. u.Set(employee.FieldHireCount, v)
  658. return u
  659. }
  660. // UpdateHireCount sets the "hire_count" field to the value that was provided on create.
  661. func (u *EmployeeUpsert) UpdateHireCount() *EmployeeUpsert {
  662. u.SetExcluded(employee.FieldHireCount)
  663. return u
  664. }
  665. // AddHireCount adds v to the "hire_count" field.
  666. func (u *EmployeeUpsert) AddHireCount(v int) *EmployeeUpsert {
  667. u.Add(employee.FieldHireCount, v)
  668. return u
  669. }
  670. // SetServiceCount sets the "service_count" field.
  671. func (u *EmployeeUpsert) SetServiceCount(v int) *EmployeeUpsert {
  672. u.Set(employee.FieldServiceCount, v)
  673. return u
  674. }
  675. // UpdateServiceCount sets the "service_count" field to the value that was provided on create.
  676. func (u *EmployeeUpsert) UpdateServiceCount() *EmployeeUpsert {
  677. u.SetExcluded(employee.FieldServiceCount)
  678. return u
  679. }
  680. // AddServiceCount adds v to the "service_count" field.
  681. func (u *EmployeeUpsert) AddServiceCount(v int) *EmployeeUpsert {
  682. u.Add(employee.FieldServiceCount, v)
  683. return u
  684. }
  685. // SetAchievementCount sets the "achievement_count" field.
  686. func (u *EmployeeUpsert) SetAchievementCount(v int) *EmployeeUpsert {
  687. u.Set(employee.FieldAchievementCount, v)
  688. return u
  689. }
  690. // UpdateAchievementCount sets the "achievement_count" field to the value that was provided on create.
  691. func (u *EmployeeUpsert) UpdateAchievementCount() *EmployeeUpsert {
  692. u.SetExcluded(employee.FieldAchievementCount)
  693. return u
  694. }
  695. // AddAchievementCount adds v to the "achievement_count" field.
  696. func (u *EmployeeUpsert) AddAchievementCount(v int) *EmployeeUpsert {
  697. u.Add(employee.FieldAchievementCount, v)
  698. return u
  699. }
  700. // SetIntro sets the "intro" field.
  701. func (u *EmployeeUpsert) SetIntro(v string) *EmployeeUpsert {
  702. u.Set(employee.FieldIntro, v)
  703. return u
  704. }
  705. // UpdateIntro sets the "intro" field to the value that was provided on create.
  706. func (u *EmployeeUpsert) UpdateIntro() *EmployeeUpsert {
  707. u.SetExcluded(employee.FieldIntro)
  708. return u
  709. }
  710. // SetEstimate sets the "estimate" field.
  711. func (u *EmployeeUpsert) SetEstimate(v string) *EmployeeUpsert {
  712. u.Set(employee.FieldEstimate, v)
  713. return u
  714. }
  715. // UpdateEstimate sets the "estimate" field to the value that was provided on create.
  716. func (u *EmployeeUpsert) UpdateEstimate() *EmployeeUpsert {
  717. u.SetExcluded(employee.FieldEstimate)
  718. return u
  719. }
  720. // SetSkill sets the "skill" field.
  721. func (u *EmployeeUpsert) SetSkill(v string) *EmployeeUpsert {
  722. u.Set(employee.FieldSkill, v)
  723. return u
  724. }
  725. // UpdateSkill sets the "skill" field to the value that was provided on create.
  726. func (u *EmployeeUpsert) UpdateSkill() *EmployeeUpsert {
  727. u.SetExcluded(employee.FieldSkill)
  728. return u
  729. }
  730. // SetAbilityType sets the "ability_type" field.
  731. func (u *EmployeeUpsert) SetAbilityType(v string) *EmployeeUpsert {
  732. u.Set(employee.FieldAbilityType, v)
  733. return u
  734. }
  735. // UpdateAbilityType sets the "ability_type" field to the value that was provided on create.
  736. func (u *EmployeeUpsert) UpdateAbilityType() *EmployeeUpsert {
  737. u.SetExcluded(employee.FieldAbilityType)
  738. return u
  739. }
  740. // SetScene sets the "scene" field.
  741. func (u *EmployeeUpsert) SetScene(v string) *EmployeeUpsert {
  742. u.Set(employee.FieldScene, v)
  743. return u
  744. }
  745. // UpdateScene sets the "scene" field to the value that was provided on create.
  746. func (u *EmployeeUpsert) UpdateScene() *EmployeeUpsert {
  747. u.SetExcluded(employee.FieldScene)
  748. return u
  749. }
  750. // SetSwitchIn sets the "switch_in" field.
  751. func (u *EmployeeUpsert) SetSwitchIn(v string) *EmployeeUpsert {
  752. u.Set(employee.FieldSwitchIn, v)
  753. return u
  754. }
  755. // UpdateSwitchIn sets the "switch_in" field to the value that was provided on create.
  756. func (u *EmployeeUpsert) UpdateSwitchIn() *EmployeeUpsert {
  757. u.SetExcluded(employee.FieldSwitchIn)
  758. return u
  759. }
  760. // SetVideoURL sets the "video_url" field.
  761. func (u *EmployeeUpsert) SetVideoURL(v string) *EmployeeUpsert {
  762. u.Set(employee.FieldVideoURL, v)
  763. return u
  764. }
  765. // UpdateVideoURL sets the "video_url" field to the value that was provided on create.
  766. func (u *EmployeeUpsert) UpdateVideoURL() *EmployeeUpsert {
  767. u.SetExcluded(employee.FieldVideoURL)
  768. return u
  769. }
  770. // SetOrganizationID sets the "organization_id" field.
  771. func (u *EmployeeUpsert) SetOrganizationID(v uint64) *EmployeeUpsert {
  772. u.Set(employee.FieldOrganizationID, v)
  773. return u
  774. }
  775. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  776. func (u *EmployeeUpsert) UpdateOrganizationID() *EmployeeUpsert {
  777. u.SetExcluded(employee.FieldOrganizationID)
  778. return u
  779. }
  780. // AddOrganizationID adds v to the "organization_id" field.
  781. func (u *EmployeeUpsert) AddOrganizationID(v uint64) *EmployeeUpsert {
  782. u.Add(employee.FieldOrganizationID, v)
  783. return u
  784. }
  785. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  786. // Using this option is equivalent to using:
  787. //
  788. // client.Employee.Create().
  789. // OnConflict(
  790. // sql.ResolveWithNewValues(),
  791. // sql.ResolveWith(func(u *sql.UpdateSet) {
  792. // u.SetIgnore(employee.FieldID)
  793. // }),
  794. // ).
  795. // Exec(ctx)
  796. func (u *EmployeeUpsertOne) UpdateNewValues() *EmployeeUpsertOne {
  797. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  798. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  799. if _, exists := u.create.mutation.ID(); exists {
  800. s.SetIgnore(employee.FieldID)
  801. }
  802. if _, exists := u.create.mutation.CreatedAt(); exists {
  803. s.SetIgnore(employee.FieldCreatedAt)
  804. }
  805. }))
  806. return u
  807. }
  808. // Ignore sets each column to itself in case of conflict.
  809. // Using this option is equivalent to using:
  810. //
  811. // client.Employee.Create().
  812. // OnConflict(sql.ResolveWithIgnore()).
  813. // Exec(ctx)
  814. func (u *EmployeeUpsertOne) Ignore() *EmployeeUpsertOne {
  815. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  816. return u
  817. }
  818. // DoNothing configures the conflict_action to `DO NOTHING`.
  819. // Supported only by SQLite and PostgreSQL.
  820. func (u *EmployeeUpsertOne) DoNothing() *EmployeeUpsertOne {
  821. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  822. return u
  823. }
  824. // Update allows overriding fields `UPDATE` values. See the EmployeeCreate.OnConflict
  825. // documentation for more info.
  826. func (u *EmployeeUpsertOne) Update(set func(*EmployeeUpsert)) *EmployeeUpsertOne {
  827. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  828. set(&EmployeeUpsert{UpdateSet: update})
  829. }))
  830. return u
  831. }
  832. // SetUpdatedAt sets the "updated_at" field.
  833. func (u *EmployeeUpsertOne) SetUpdatedAt(v time.Time) *EmployeeUpsertOne {
  834. return u.Update(func(s *EmployeeUpsert) {
  835. s.SetUpdatedAt(v)
  836. })
  837. }
  838. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  839. func (u *EmployeeUpsertOne) UpdateUpdatedAt() *EmployeeUpsertOne {
  840. return u.Update(func(s *EmployeeUpsert) {
  841. s.UpdateUpdatedAt()
  842. })
  843. }
  844. // SetDeletedAt sets the "deleted_at" field.
  845. func (u *EmployeeUpsertOne) SetDeletedAt(v time.Time) *EmployeeUpsertOne {
  846. return u.Update(func(s *EmployeeUpsert) {
  847. s.SetDeletedAt(v)
  848. })
  849. }
  850. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  851. func (u *EmployeeUpsertOne) UpdateDeletedAt() *EmployeeUpsertOne {
  852. return u.Update(func(s *EmployeeUpsert) {
  853. s.UpdateDeletedAt()
  854. })
  855. }
  856. // ClearDeletedAt clears the value of the "deleted_at" field.
  857. func (u *EmployeeUpsertOne) ClearDeletedAt() *EmployeeUpsertOne {
  858. return u.Update(func(s *EmployeeUpsert) {
  859. s.ClearDeletedAt()
  860. })
  861. }
  862. // SetTitle sets the "title" field.
  863. func (u *EmployeeUpsertOne) SetTitle(v string) *EmployeeUpsertOne {
  864. return u.Update(func(s *EmployeeUpsert) {
  865. s.SetTitle(v)
  866. })
  867. }
  868. // UpdateTitle sets the "title" field to the value that was provided on create.
  869. func (u *EmployeeUpsertOne) UpdateTitle() *EmployeeUpsertOne {
  870. return u.Update(func(s *EmployeeUpsert) {
  871. s.UpdateTitle()
  872. })
  873. }
  874. // SetAvatar sets the "avatar" field.
  875. func (u *EmployeeUpsertOne) SetAvatar(v string) *EmployeeUpsertOne {
  876. return u.Update(func(s *EmployeeUpsert) {
  877. s.SetAvatar(v)
  878. })
  879. }
  880. // UpdateAvatar sets the "avatar" field to the value that was provided on create.
  881. func (u *EmployeeUpsertOne) UpdateAvatar() *EmployeeUpsertOne {
  882. return u.Update(func(s *EmployeeUpsert) {
  883. s.UpdateAvatar()
  884. })
  885. }
  886. // SetTags sets the "tags" field.
  887. func (u *EmployeeUpsertOne) SetTags(v string) *EmployeeUpsertOne {
  888. return u.Update(func(s *EmployeeUpsert) {
  889. s.SetTags(v)
  890. })
  891. }
  892. // UpdateTags sets the "tags" field to the value that was provided on create.
  893. func (u *EmployeeUpsertOne) UpdateTags() *EmployeeUpsertOne {
  894. return u.Update(func(s *EmployeeUpsert) {
  895. s.UpdateTags()
  896. })
  897. }
  898. // SetHireCount sets the "hire_count" field.
  899. func (u *EmployeeUpsertOne) SetHireCount(v int) *EmployeeUpsertOne {
  900. return u.Update(func(s *EmployeeUpsert) {
  901. s.SetHireCount(v)
  902. })
  903. }
  904. // AddHireCount adds v to the "hire_count" field.
  905. func (u *EmployeeUpsertOne) AddHireCount(v int) *EmployeeUpsertOne {
  906. return u.Update(func(s *EmployeeUpsert) {
  907. s.AddHireCount(v)
  908. })
  909. }
  910. // UpdateHireCount sets the "hire_count" field to the value that was provided on create.
  911. func (u *EmployeeUpsertOne) UpdateHireCount() *EmployeeUpsertOne {
  912. return u.Update(func(s *EmployeeUpsert) {
  913. s.UpdateHireCount()
  914. })
  915. }
  916. // SetServiceCount sets the "service_count" field.
  917. func (u *EmployeeUpsertOne) SetServiceCount(v int) *EmployeeUpsertOne {
  918. return u.Update(func(s *EmployeeUpsert) {
  919. s.SetServiceCount(v)
  920. })
  921. }
  922. // AddServiceCount adds v to the "service_count" field.
  923. func (u *EmployeeUpsertOne) AddServiceCount(v int) *EmployeeUpsertOne {
  924. return u.Update(func(s *EmployeeUpsert) {
  925. s.AddServiceCount(v)
  926. })
  927. }
  928. // UpdateServiceCount sets the "service_count" field to the value that was provided on create.
  929. func (u *EmployeeUpsertOne) UpdateServiceCount() *EmployeeUpsertOne {
  930. return u.Update(func(s *EmployeeUpsert) {
  931. s.UpdateServiceCount()
  932. })
  933. }
  934. // SetAchievementCount sets the "achievement_count" field.
  935. func (u *EmployeeUpsertOne) SetAchievementCount(v int) *EmployeeUpsertOne {
  936. return u.Update(func(s *EmployeeUpsert) {
  937. s.SetAchievementCount(v)
  938. })
  939. }
  940. // AddAchievementCount adds v to the "achievement_count" field.
  941. func (u *EmployeeUpsertOne) AddAchievementCount(v int) *EmployeeUpsertOne {
  942. return u.Update(func(s *EmployeeUpsert) {
  943. s.AddAchievementCount(v)
  944. })
  945. }
  946. // UpdateAchievementCount sets the "achievement_count" field to the value that was provided on create.
  947. func (u *EmployeeUpsertOne) UpdateAchievementCount() *EmployeeUpsertOne {
  948. return u.Update(func(s *EmployeeUpsert) {
  949. s.UpdateAchievementCount()
  950. })
  951. }
  952. // SetIntro sets the "intro" field.
  953. func (u *EmployeeUpsertOne) SetIntro(v string) *EmployeeUpsertOne {
  954. return u.Update(func(s *EmployeeUpsert) {
  955. s.SetIntro(v)
  956. })
  957. }
  958. // UpdateIntro sets the "intro" field to the value that was provided on create.
  959. func (u *EmployeeUpsertOne) UpdateIntro() *EmployeeUpsertOne {
  960. return u.Update(func(s *EmployeeUpsert) {
  961. s.UpdateIntro()
  962. })
  963. }
  964. // SetEstimate sets the "estimate" field.
  965. func (u *EmployeeUpsertOne) SetEstimate(v string) *EmployeeUpsertOne {
  966. return u.Update(func(s *EmployeeUpsert) {
  967. s.SetEstimate(v)
  968. })
  969. }
  970. // UpdateEstimate sets the "estimate" field to the value that was provided on create.
  971. func (u *EmployeeUpsertOne) UpdateEstimate() *EmployeeUpsertOne {
  972. return u.Update(func(s *EmployeeUpsert) {
  973. s.UpdateEstimate()
  974. })
  975. }
  976. // SetSkill sets the "skill" field.
  977. func (u *EmployeeUpsertOne) SetSkill(v string) *EmployeeUpsertOne {
  978. return u.Update(func(s *EmployeeUpsert) {
  979. s.SetSkill(v)
  980. })
  981. }
  982. // UpdateSkill sets the "skill" field to the value that was provided on create.
  983. func (u *EmployeeUpsertOne) UpdateSkill() *EmployeeUpsertOne {
  984. return u.Update(func(s *EmployeeUpsert) {
  985. s.UpdateSkill()
  986. })
  987. }
  988. // SetAbilityType sets the "ability_type" field.
  989. func (u *EmployeeUpsertOne) SetAbilityType(v string) *EmployeeUpsertOne {
  990. return u.Update(func(s *EmployeeUpsert) {
  991. s.SetAbilityType(v)
  992. })
  993. }
  994. // UpdateAbilityType sets the "ability_type" field to the value that was provided on create.
  995. func (u *EmployeeUpsertOne) UpdateAbilityType() *EmployeeUpsertOne {
  996. return u.Update(func(s *EmployeeUpsert) {
  997. s.UpdateAbilityType()
  998. })
  999. }
  1000. // SetScene sets the "scene" field.
  1001. func (u *EmployeeUpsertOne) SetScene(v string) *EmployeeUpsertOne {
  1002. return u.Update(func(s *EmployeeUpsert) {
  1003. s.SetScene(v)
  1004. })
  1005. }
  1006. // UpdateScene sets the "scene" field to the value that was provided on create.
  1007. func (u *EmployeeUpsertOne) UpdateScene() *EmployeeUpsertOne {
  1008. return u.Update(func(s *EmployeeUpsert) {
  1009. s.UpdateScene()
  1010. })
  1011. }
  1012. // SetSwitchIn sets the "switch_in" field.
  1013. func (u *EmployeeUpsertOne) SetSwitchIn(v string) *EmployeeUpsertOne {
  1014. return u.Update(func(s *EmployeeUpsert) {
  1015. s.SetSwitchIn(v)
  1016. })
  1017. }
  1018. // UpdateSwitchIn sets the "switch_in" field to the value that was provided on create.
  1019. func (u *EmployeeUpsertOne) UpdateSwitchIn() *EmployeeUpsertOne {
  1020. return u.Update(func(s *EmployeeUpsert) {
  1021. s.UpdateSwitchIn()
  1022. })
  1023. }
  1024. // SetVideoURL sets the "video_url" field.
  1025. func (u *EmployeeUpsertOne) SetVideoURL(v string) *EmployeeUpsertOne {
  1026. return u.Update(func(s *EmployeeUpsert) {
  1027. s.SetVideoURL(v)
  1028. })
  1029. }
  1030. // UpdateVideoURL sets the "video_url" field to the value that was provided on create.
  1031. func (u *EmployeeUpsertOne) UpdateVideoURL() *EmployeeUpsertOne {
  1032. return u.Update(func(s *EmployeeUpsert) {
  1033. s.UpdateVideoURL()
  1034. })
  1035. }
  1036. // SetOrganizationID sets the "organization_id" field.
  1037. func (u *EmployeeUpsertOne) SetOrganizationID(v uint64) *EmployeeUpsertOne {
  1038. return u.Update(func(s *EmployeeUpsert) {
  1039. s.SetOrganizationID(v)
  1040. })
  1041. }
  1042. // AddOrganizationID adds v to the "organization_id" field.
  1043. func (u *EmployeeUpsertOne) AddOrganizationID(v uint64) *EmployeeUpsertOne {
  1044. return u.Update(func(s *EmployeeUpsert) {
  1045. s.AddOrganizationID(v)
  1046. })
  1047. }
  1048. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  1049. func (u *EmployeeUpsertOne) UpdateOrganizationID() *EmployeeUpsertOne {
  1050. return u.Update(func(s *EmployeeUpsert) {
  1051. s.UpdateOrganizationID()
  1052. })
  1053. }
  1054. // Exec executes the query.
  1055. func (u *EmployeeUpsertOne) Exec(ctx context.Context) error {
  1056. if len(u.create.conflict) == 0 {
  1057. return errors.New("ent: missing options for EmployeeCreate.OnConflict")
  1058. }
  1059. return u.create.Exec(ctx)
  1060. }
  1061. // ExecX is like Exec, but panics if an error occurs.
  1062. func (u *EmployeeUpsertOne) ExecX(ctx context.Context) {
  1063. if err := u.create.Exec(ctx); err != nil {
  1064. panic(err)
  1065. }
  1066. }
  1067. // Exec executes the UPSERT query and returns the inserted/updated ID.
  1068. func (u *EmployeeUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  1069. node, err := u.create.Save(ctx)
  1070. if err != nil {
  1071. return id, err
  1072. }
  1073. return node.ID, nil
  1074. }
  1075. // IDX is like ID, but panics if an error occurs.
  1076. func (u *EmployeeUpsertOne) IDX(ctx context.Context) uint64 {
  1077. id, err := u.ID(ctx)
  1078. if err != nil {
  1079. panic(err)
  1080. }
  1081. return id
  1082. }
  1083. // EmployeeCreateBulk is the builder for creating many Employee entities in bulk.
  1084. type EmployeeCreateBulk struct {
  1085. config
  1086. err error
  1087. builders []*EmployeeCreate
  1088. conflict []sql.ConflictOption
  1089. }
  1090. // Save creates the Employee entities in the database.
  1091. func (ecb *EmployeeCreateBulk) Save(ctx context.Context) ([]*Employee, error) {
  1092. if ecb.err != nil {
  1093. return nil, ecb.err
  1094. }
  1095. specs := make([]*sqlgraph.CreateSpec, len(ecb.builders))
  1096. nodes := make([]*Employee, len(ecb.builders))
  1097. mutators := make([]Mutator, len(ecb.builders))
  1098. for i := range ecb.builders {
  1099. func(i int, root context.Context) {
  1100. builder := ecb.builders[i]
  1101. builder.defaults()
  1102. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  1103. mutation, ok := m.(*EmployeeMutation)
  1104. if !ok {
  1105. return nil, fmt.Errorf("unexpected mutation type %T", m)
  1106. }
  1107. if err := builder.check(); err != nil {
  1108. return nil, err
  1109. }
  1110. builder.mutation = mutation
  1111. var err error
  1112. nodes[i], specs[i] = builder.createSpec()
  1113. if i < len(mutators)-1 {
  1114. _, err = mutators[i+1].Mutate(root, ecb.builders[i+1].mutation)
  1115. } else {
  1116. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  1117. spec.OnConflict = ecb.conflict
  1118. // Invoke the actual operation on the latest mutation in the chain.
  1119. if err = sqlgraph.BatchCreate(ctx, ecb.driver, spec); err != nil {
  1120. if sqlgraph.IsConstraintError(err) {
  1121. err = &ConstraintError{msg: err.Error(), wrap: err}
  1122. }
  1123. }
  1124. }
  1125. if err != nil {
  1126. return nil, err
  1127. }
  1128. mutation.id = &nodes[i].ID
  1129. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  1130. id := specs[i].ID.Value.(int64)
  1131. nodes[i].ID = uint64(id)
  1132. }
  1133. mutation.done = true
  1134. return nodes[i], nil
  1135. })
  1136. for i := len(builder.hooks) - 1; i >= 0; i-- {
  1137. mut = builder.hooks[i](mut)
  1138. }
  1139. mutators[i] = mut
  1140. }(i, ctx)
  1141. }
  1142. if len(mutators) > 0 {
  1143. if _, err := mutators[0].Mutate(ctx, ecb.builders[0].mutation); err != nil {
  1144. return nil, err
  1145. }
  1146. }
  1147. return nodes, nil
  1148. }
  1149. // SaveX is like Save, but panics if an error occurs.
  1150. func (ecb *EmployeeCreateBulk) SaveX(ctx context.Context) []*Employee {
  1151. v, err := ecb.Save(ctx)
  1152. if err != nil {
  1153. panic(err)
  1154. }
  1155. return v
  1156. }
  1157. // Exec executes the query.
  1158. func (ecb *EmployeeCreateBulk) Exec(ctx context.Context) error {
  1159. _, err := ecb.Save(ctx)
  1160. return err
  1161. }
  1162. // ExecX is like Exec, but panics if an error occurs.
  1163. func (ecb *EmployeeCreateBulk) ExecX(ctx context.Context) {
  1164. if err := ecb.Exec(ctx); err != nil {
  1165. panic(err)
  1166. }
  1167. }
  1168. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  1169. // of the `INSERT` statement. For example:
  1170. //
  1171. // client.Employee.CreateBulk(builders...).
  1172. // OnConflict(
  1173. // // Update the row with the new values
  1174. // // the was proposed for insertion.
  1175. // sql.ResolveWithNewValues(),
  1176. // ).
  1177. // // Override some of the fields with custom
  1178. // // update values.
  1179. // Update(func(u *ent.EmployeeUpsert) {
  1180. // SetCreatedAt(v+v).
  1181. // }).
  1182. // Exec(ctx)
  1183. func (ecb *EmployeeCreateBulk) OnConflict(opts ...sql.ConflictOption) *EmployeeUpsertBulk {
  1184. ecb.conflict = opts
  1185. return &EmployeeUpsertBulk{
  1186. create: ecb,
  1187. }
  1188. }
  1189. // OnConflictColumns calls `OnConflict` and configures the columns
  1190. // as conflict target. Using this option is equivalent to using:
  1191. //
  1192. // client.Employee.Create().
  1193. // OnConflict(sql.ConflictColumns(columns...)).
  1194. // Exec(ctx)
  1195. func (ecb *EmployeeCreateBulk) OnConflictColumns(columns ...string) *EmployeeUpsertBulk {
  1196. ecb.conflict = append(ecb.conflict, sql.ConflictColumns(columns...))
  1197. return &EmployeeUpsertBulk{
  1198. create: ecb,
  1199. }
  1200. }
  1201. // EmployeeUpsertBulk is the builder for "upsert"-ing
  1202. // a bulk of Employee nodes.
  1203. type EmployeeUpsertBulk struct {
  1204. create *EmployeeCreateBulk
  1205. }
  1206. // UpdateNewValues updates the mutable fields using the new values that
  1207. // were set on create. Using this option is equivalent to using:
  1208. //
  1209. // client.Employee.Create().
  1210. // OnConflict(
  1211. // sql.ResolveWithNewValues(),
  1212. // sql.ResolveWith(func(u *sql.UpdateSet) {
  1213. // u.SetIgnore(employee.FieldID)
  1214. // }),
  1215. // ).
  1216. // Exec(ctx)
  1217. func (u *EmployeeUpsertBulk) UpdateNewValues() *EmployeeUpsertBulk {
  1218. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  1219. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  1220. for _, b := range u.create.builders {
  1221. if _, exists := b.mutation.ID(); exists {
  1222. s.SetIgnore(employee.FieldID)
  1223. }
  1224. if _, exists := b.mutation.CreatedAt(); exists {
  1225. s.SetIgnore(employee.FieldCreatedAt)
  1226. }
  1227. }
  1228. }))
  1229. return u
  1230. }
  1231. // Ignore sets each column to itself in case of conflict.
  1232. // Using this option is equivalent to using:
  1233. //
  1234. // client.Employee.Create().
  1235. // OnConflict(sql.ResolveWithIgnore()).
  1236. // Exec(ctx)
  1237. func (u *EmployeeUpsertBulk) Ignore() *EmployeeUpsertBulk {
  1238. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  1239. return u
  1240. }
  1241. // DoNothing configures the conflict_action to `DO NOTHING`.
  1242. // Supported only by SQLite and PostgreSQL.
  1243. func (u *EmployeeUpsertBulk) DoNothing() *EmployeeUpsertBulk {
  1244. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  1245. return u
  1246. }
  1247. // Update allows overriding fields `UPDATE` values. See the EmployeeCreateBulk.OnConflict
  1248. // documentation for more info.
  1249. func (u *EmployeeUpsertBulk) Update(set func(*EmployeeUpsert)) *EmployeeUpsertBulk {
  1250. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  1251. set(&EmployeeUpsert{UpdateSet: update})
  1252. }))
  1253. return u
  1254. }
  1255. // SetUpdatedAt sets the "updated_at" field.
  1256. func (u *EmployeeUpsertBulk) SetUpdatedAt(v time.Time) *EmployeeUpsertBulk {
  1257. return u.Update(func(s *EmployeeUpsert) {
  1258. s.SetUpdatedAt(v)
  1259. })
  1260. }
  1261. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  1262. func (u *EmployeeUpsertBulk) UpdateUpdatedAt() *EmployeeUpsertBulk {
  1263. return u.Update(func(s *EmployeeUpsert) {
  1264. s.UpdateUpdatedAt()
  1265. })
  1266. }
  1267. // SetDeletedAt sets the "deleted_at" field.
  1268. func (u *EmployeeUpsertBulk) SetDeletedAt(v time.Time) *EmployeeUpsertBulk {
  1269. return u.Update(func(s *EmployeeUpsert) {
  1270. s.SetDeletedAt(v)
  1271. })
  1272. }
  1273. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  1274. func (u *EmployeeUpsertBulk) UpdateDeletedAt() *EmployeeUpsertBulk {
  1275. return u.Update(func(s *EmployeeUpsert) {
  1276. s.UpdateDeletedAt()
  1277. })
  1278. }
  1279. // ClearDeletedAt clears the value of the "deleted_at" field.
  1280. func (u *EmployeeUpsertBulk) ClearDeletedAt() *EmployeeUpsertBulk {
  1281. return u.Update(func(s *EmployeeUpsert) {
  1282. s.ClearDeletedAt()
  1283. })
  1284. }
  1285. // SetTitle sets the "title" field.
  1286. func (u *EmployeeUpsertBulk) SetTitle(v string) *EmployeeUpsertBulk {
  1287. return u.Update(func(s *EmployeeUpsert) {
  1288. s.SetTitle(v)
  1289. })
  1290. }
  1291. // UpdateTitle sets the "title" field to the value that was provided on create.
  1292. func (u *EmployeeUpsertBulk) UpdateTitle() *EmployeeUpsertBulk {
  1293. return u.Update(func(s *EmployeeUpsert) {
  1294. s.UpdateTitle()
  1295. })
  1296. }
  1297. // SetAvatar sets the "avatar" field.
  1298. func (u *EmployeeUpsertBulk) SetAvatar(v string) *EmployeeUpsertBulk {
  1299. return u.Update(func(s *EmployeeUpsert) {
  1300. s.SetAvatar(v)
  1301. })
  1302. }
  1303. // UpdateAvatar sets the "avatar" field to the value that was provided on create.
  1304. func (u *EmployeeUpsertBulk) UpdateAvatar() *EmployeeUpsertBulk {
  1305. return u.Update(func(s *EmployeeUpsert) {
  1306. s.UpdateAvatar()
  1307. })
  1308. }
  1309. // SetTags sets the "tags" field.
  1310. func (u *EmployeeUpsertBulk) SetTags(v string) *EmployeeUpsertBulk {
  1311. return u.Update(func(s *EmployeeUpsert) {
  1312. s.SetTags(v)
  1313. })
  1314. }
  1315. // UpdateTags sets the "tags" field to the value that was provided on create.
  1316. func (u *EmployeeUpsertBulk) UpdateTags() *EmployeeUpsertBulk {
  1317. return u.Update(func(s *EmployeeUpsert) {
  1318. s.UpdateTags()
  1319. })
  1320. }
  1321. // SetHireCount sets the "hire_count" field.
  1322. func (u *EmployeeUpsertBulk) SetHireCount(v int) *EmployeeUpsertBulk {
  1323. return u.Update(func(s *EmployeeUpsert) {
  1324. s.SetHireCount(v)
  1325. })
  1326. }
  1327. // AddHireCount adds v to the "hire_count" field.
  1328. func (u *EmployeeUpsertBulk) AddHireCount(v int) *EmployeeUpsertBulk {
  1329. return u.Update(func(s *EmployeeUpsert) {
  1330. s.AddHireCount(v)
  1331. })
  1332. }
  1333. // UpdateHireCount sets the "hire_count" field to the value that was provided on create.
  1334. func (u *EmployeeUpsertBulk) UpdateHireCount() *EmployeeUpsertBulk {
  1335. return u.Update(func(s *EmployeeUpsert) {
  1336. s.UpdateHireCount()
  1337. })
  1338. }
  1339. // SetServiceCount sets the "service_count" field.
  1340. func (u *EmployeeUpsertBulk) SetServiceCount(v int) *EmployeeUpsertBulk {
  1341. return u.Update(func(s *EmployeeUpsert) {
  1342. s.SetServiceCount(v)
  1343. })
  1344. }
  1345. // AddServiceCount adds v to the "service_count" field.
  1346. func (u *EmployeeUpsertBulk) AddServiceCount(v int) *EmployeeUpsertBulk {
  1347. return u.Update(func(s *EmployeeUpsert) {
  1348. s.AddServiceCount(v)
  1349. })
  1350. }
  1351. // UpdateServiceCount sets the "service_count" field to the value that was provided on create.
  1352. func (u *EmployeeUpsertBulk) UpdateServiceCount() *EmployeeUpsertBulk {
  1353. return u.Update(func(s *EmployeeUpsert) {
  1354. s.UpdateServiceCount()
  1355. })
  1356. }
  1357. // SetAchievementCount sets the "achievement_count" field.
  1358. func (u *EmployeeUpsertBulk) SetAchievementCount(v int) *EmployeeUpsertBulk {
  1359. return u.Update(func(s *EmployeeUpsert) {
  1360. s.SetAchievementCount(v)
  1361. })
  1362. }
  1363. // AddAchievementCount adds v to the "achievement_count" field.
  1364. func (u *EmployeeUpsertBulk) AddAchievementCount(v int) *EmployeeUpsertBulk {
  1365. return u.Update(func(s *EmployeeUpsert) {
  1366. s.AddAchievementCount(v)
  1367. })
  1368. }
  1369. // UpdateAchievementCount sets the "achievement_count" field to the value that was provided on create.
  1370. func (u *EmployeeUpsertBulk) UpdateAchievementCount() *EmployeeUpsertBulk {
  1371. return u.Update(func(s *EmployeeUpsert) {
  1372. s.UpdateAchievementCount()
  1373. })
  1374. }
  1375. // SetIntro sets the "intro" field.
  1376. func (u *EmployeeUpsertBulk) SetIntro(v string) *EmployeeUpsertBulk {
  1377. return u.Update(func(s *EmployeeUpsert) {
  1378. s.SetIntro(v)
  1379. })
  1380. }
  1381. // UpdateIntro sets the "intro" field to the value that was provided on create.
  1382. func (u *EmployeeUpsertBulk) UpdateIntro() *EmployeeUpsertBulk {
  1383. return u.Update(func(s *EmployeeUpsert) {
  1384. s.UpdateIntro()
  1385. })
  1386. }
  1387. // SetEstimate sets the "estimate" field.
  1388. func (u *EmployeeUpsertBulk) SetEstimate(v string) *EmployeeUpsertBulk {
  1389. return u.Update(func(s *EmployeeUpsert) {
  1390. s.SetEstimate(v)
  1391. })
  1392. }
  1393. // UpdateEstimate sets the "estimate" field to the value that was provided on create.
  1394. func (u *EmployeeUpsertBulk) UpdateEstimate() *EmployeeUpsertBulk {
  1395. return u.Update(func(s *EmployeeUpsert) {
  1396. s.UpdateEstimate()
  1397. })
  1398. }
  1399. // SetSkill sets the "skill" field.
  1400. func (u *EmployeeUpsertBulk) SetSkill(v string) *EmployeeUpsertBulk {
  1401. return u.Update(func(s *EmployeeUpsert) {
  1402. s.SetSkill(v)
  1403. })
  1404. }
  1405. // UpdateSkill sets the "skill" field to the value that was provided on create.
  1406. func (u *EmployeeUpsertBulk) UpdateSkill() *EmployeeUpsertBulk {
  1407. return u.Update(func(s *EmployeeUpsert) {
  1408. s.UpdateSkill()
  1409. })
  1410. }
  1411. // SetAbilityType sets the "ability_type" field.
  1412. func (u *EmployeeUpsertBulk) SetAbilityType(v string) *EmployeeUpsertBulk {
  1413. return u.Update(func(s *EmployeeUpsert) {
  1414. s.SetAbilityType(v)
  1415. })
  1416. }
  1417. // UpdateAbilityType sets the "ability_type" field to the value that was provided on create.
  1418. func (u *EmployeeUpsertBulk) UpdateAbilityType() *EmployeeUpsertBulk {
  1419. return u.Update(func(s *EmployeeUpsert) {
  1420. s.UpdateAbilityType()
  1421. })
  1422. }
  1423. // SetScene sets the "scene" field.
  1424. func (u *EmployeeUpsertBulk) SetScene(v string) *EmployeeUpsertBulk {
  1425. return u.Update(func(s *EmployeeUpsert) {
  1426. s.SetScene(v)
  1427. })
  1428. }
  1429. // UpdateScene sets the "scene" field to the value that was provided on create.
  1430. func (u *EmployeeUpsertBulk) UpdateScene() *EmployeeUpsertBulk {
  1431. return u.Update(func(s *EmployeeUpsert) {
  1432. s.UpdateScene()
  1433. })
  1434. }
  1435. // SetSwitchIn sets the "switch_in" field.
  1436. func (u *EmployeeUpsertBulk) SetSwitchIn(v string) *EmployeeUpsertBulk {
  1437. return u.Update(func(s *EmployeeUpsert) {
  1438. s.SetSwitchIn(v)
  1439. })
  1440. }
  1441. // UpdateSwitchIn sets the "switch_in" field to the value that was provided on create.
  1442. func (u *EmployeeUpsertBulk) UpdateSwitchIn() *EmployeeUpsertBulk {
  1443. return u.Update(func(s *EmployeeUpsert) {
  1444. s.UpdateSwitchIn()
  1445. })
  1446. }
  1447. // SetVideoURL sets the "video_url" field.
  1448. func (u *EmployeeUpsertBulk) SetVideoURL(v string) *EmployeeUpsertBulk {
  1449. return u.Update(func(s *EmployeeUpsert) {
  1450. s.SetVideoURL(v)
  1451. })
  1452. }
  1453. // UpdateVideoURL sets the "video_url" field to the value that was provided on create.
  1454. func (u *EmployeeUpsertBulk) UpdateVideoURL() *EmployeeUpsertBulk {
  1455. return u.Update(func(s *EmployeeUpsert) {
  1456. s.UpdateVideoURL()
  1457. })
  1458. }
  1459. // SetOrganizationID sets the "organization_id" field.
  1460. func (u *EmployeeUpsertBulk) SetOrganizationID(v uint64) *EmployeeUpsertBulk {
  1461. return u.Update(func(s *EmployeeUpsert) {
  1462. s.SetOrganizationID(v)
  1463. })
  1464. }
  1465. // AddOrganizationID adds v to the "organization_id" field.
  1466. func (u *EmployeeUpsertBulk) AddOrganizationID(v uint64) *EmployeeUpsertBulk {
  1467. return u.Update(func(s *EmployeeUpsert) {
  1468. s.AddOrganizationID(v)
  1469. })
  1470. }
  1471. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  1472. func (u *EmployeeUpsertBulk) UpdateOrganizationID() *EmployeeUpsertBulk {
  1473. return u.Update(func(s *EmployeeUpsert) {
  1474. s.UpdateOrganizationID()
  1475. })
  1476. }
  1477. // Exec executes the query.
  1478. func (u *EmployeeUpsertBulk) Exec(ctx context.Context) error {
  1479. if u.create.err != nil {
  1480. return u.create.err
  1481. }
  1482. for i, b := range u.create.builders {
  1483. if len(b.conflict) != 0 {
  1484. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the EmployeeCreateBulk instead", i)
  1485. }
  1486. }
  1487. if len(u.create.conflict) == 0 {
  1488. return errors.New("ent: missing options for EmployeeCreateBulk.OnConflict")
  1489. }
  1490. return u.create.Exec(ctx)
  1491. }
  1492. // ExecX is like Exec, but panics if an error occurs.
  1493. func (u *EmployeeUpsertBulk) ExecX(ctx context.Context) {
  1494. if err := u.create.Exec(ctx); err != nil {
  1495. panic(err)
  1496. }
  1497. }