employee_update.go 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284
  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/predicate"
  10. "wechat-api/ent/tutorial"
  11. "wechat-api/ent/workexperience"
  12. "entgo.io/ent/dialect/sql"
  13. "entgo.io/ent/dialect/sql/sqlgraph"
  14. "entgo.io/ent/schema/field"
  15. )
  16. // EmployeeUpdate is the builder for updating Employee entities.
  17. type EmployeeUpdate struct {
  18. config
  19. hooks []Hook
  20. mutation *EmployeeMutation
  21. }
  22. // Where appends a list predicates to the EmployeeUpdate builder.
  23. func (eu *EmployeeUpdate) Where(ps ...predicate.Employee) *EmployeeUpdate {
  24. eu.mutation.Where(ps...)
  25. return eu
  26. }
  27. // SetUpdatedAt sets the "updated_at" field.
  28. func (eu *EmployeeUpdate) SetUpdatedAt(t time.Time) *EmployeeUpdate {
  29. eu.mutation.SetUpdatedAt(t)
  30. return eu
  31. }
  32. // SetDeletedAt sets the "deleted_at" field.
  33. func (eu *EmployeeUpdate) SetDeletedAt(t time.Time) *EmployeeUpdate {
  34. eu.mutation.SetDeletedAt(t)
  35. return eu
  36. }
  37. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  38. func (eu *EmployeeUpdate) SetNillableDeletedAt(t *time.Time) *EmployeeUpdate {
  39. if t != nil {
  40. eu.SetDeletedAt(*t)
  41. }
  42. return eu
  43. }
  44. // ClearDeletedAt clears the value of the "deleted_at" field.
  45. func (eu *EmployeeUpdate) ClearDeletedAt() *EmployeeUpdate {
  46. eu.mutation.ClearDeletedAt()
  47. return eu
  48. }
  49. // SetTitle sets the "title" field.
  50. func (eu *EmployeeUpdate) SetTitle(s string) *EmployeeUpdate {
  51. eu.mutation.SetTitle(s)
  52. return eu
  53. }
  54. // SetNillableTitle sets the "title" field if the given value is not nil.
  55. func (eu *EmployeeUpdate) SetNillableTitle(s *string) *EmployeeUpdate {
  56. if s != nil {
  57. eu.SetTitle(*s)
  58. }
  59. return eu
  60. }
  61. // SetAvatar sets the "avatar" field.
  62. func (eu *EmployeeUpdate) SetAvatar(s string) *EmployeeUpdate {
  63. eu.mutation.SetAvatar(s)
  64. return eu
  65. }
  66. // SetNillableAvatar sets the "avatar" field if the given value is not nil.
  67. func (eu *EmployeeUpdate) SetNillableAvatar(s *string) *EmployeeUpdate {
  68. if s != nil {
  69. eu.SetAvatar(*s)
  70. }
  71. return eu
  72. }
  73. // SetTags sets the "tags" field.
  74. func (eu *EmployeeUpdate) SetTags(s string) *EmployeeUpdate {
  75. eu.mutation.SetTags(s)
  76. return eu
  77. }
  78. // SetNillableTags sets the "tags" field if the given value is not nil.
  79. func (eu *EmployeeUpdate) SetNillableTags(s *string) *EmployeeUpdate {
  80. if s != nil {
  81. eu.SetTags(*s)
  82. }
  83. return eu
  84. }
  85. // SetHireCount sets the "hire_count" field.
  86. func (eu *EmployeeUpdate) SetHireCount(i int) *EmployeeUpdate {
  87. eu.mutation.ResetHireCount()
  88. eu.mutation.SetHireCount(i)
  89. return eu
  90. }
  91. // SetNillableHireCount sets the "hire_count" field if the given value is not nil.
  92. func (eu *EmployeeUpdate) SetNillableHireCount(i *int) *EmployeeUpdate {
  93. if i != nil {
  94. eu.SetHireCount(*i)
  95. }
  96. return eu
  97. }
  98. // AddHireCount adds i to the "hire_count" field.
  99. func (eu *EmployeeUpdate) AddHireCount(i int) *EmployeeUpdate {
  100. eu.mutation.AddHireCount(i)
  101. return eu
  102. }
  103. // SetServiceCount sets the "service_count" field.
  104. func (eu *EmployeeUpdate) SetServiceCount(i int) *EmployeeUpdate {
  105. eu.mutation.ResetServiceCount()
  106. eu.mutation.SetServiceCount(i)
  107. return eu
  108. }
  109. // SetNillableServiceCount sets the "service_count" field if the given value is not nil.
  110. func (eu *EmployeeUpdate) SetNillableServiceCount(i *int) *EmployeeUpdate {
  111. if i != nil {
  112. eu.SetServiceCount(*i)
  113. }
  114. return eu
  115. }
  116. // AddServiceCount adds i to the "service_count" field.
  117. func (eu *EmployeeUpdate) AddServiceCount(i int) *EmployeeUpdate {
  118. eu.mutation.AddServiceCount(i)
  119. return eu
  120. }
  121. // SetAchievementCount sets the "achievement_count" field.
  122. func (eu *EmployeeUpdate) SetAchievementCount(i int) *EmployeeUpdate {
  123. eu.mutation.ResetAchievementCount()
  124. eu.mutation.SetAchievementCount(i)
  125. return eu
  126. }
  127. // SetNillableAchievementCount sets the "achievement_count" field if the given value is not nil.
  128. func (eu *EmployeeUpdate) SetNillableAchievementCount(i *int) *EmployeeUpdate {
  129. if i != nil {
  130. eu.SetAchievementCount(*i)
  131. }
  132. return eu
  133. }
  134. // AddAchievementCount adds i to the "achievement_count" field.
  135. func (eu *EmployeeUpdate) AddAchievementCount(i int) *EmployeeUpdate {
  136. eu.mutation.AddAchievementCount(i)
  137. return eu
  138. }
  139. // SetIntro sets the "intro" field.
  140. func (eu *EmployeeUpdate) SetIntro(s string) *EmployeeUpdate {
  141. eu.mutation.SetIntro(s)
  142. return eu
  143. }
  144. // SetNillableIntro sets the "intro" field if the given value is not nil.
  145. func (eu *EmployeeUpdate) SetNillableIntro(s *string) *EmployeeUpdate {
  146. if s != nil {
  147. eu.SetIntro(*s)
  148. }
  149. return eu
  150. }
  151. // SetEstimate sets the "estimate" field.
  152. func (eu *EmployeeUpdate) SetEstimate(s string) *EmployeeUpdate {
  153. eu.mutation.SetEstimate(s)
  154. return eu
  155. }
  156. // SetNillableEstimate sets the "estimate" field if the given value is not nil.
  157. func (eu *EmployeeUpdate) SetNillableEstimate(s *string) *EmployeeUpdate {
  158. if s != nil {
  159. eu.SetEstimate(*s)
  160. }
  161. return eu
  162. }
  163. // SetSkill sets the "skill" field.
  164. func (eu *EmployeeUpdate) SetSkill(s string) *EmployeeUpdate {
  165. eu.mutation.SetSkill(s)
  166. return eu
  167. }
  168. // SetNillableSkill sets the "skill" field if the given value is not nil.
  169. func (eu *EmployeeUpdate) SetNillableSkill(s *string) *EmployeeUpdate {
  170. if s != nil {
  171. eu.SetSkill(*s)
  172. }
  173. return eu
  174. }
  175. // SetAbilityType sets the "ability_type" field.
  176. func (eu *EmployeeUpdate) SetAbilityType(s string) *EmployeeUpdate {
  177. eu.mutation.SetAbilityType(s)
  178. return eu
  179. }
  180. // SetNillableAbilityType sets the "ability_type" field if the given value is not nil.
  181. func (eu *EmployeeUpdate) SetNillableAbilityType(s *string) *EmployeeUpdate {
  182. if s != nil {
  183. eu.SetAbilityType(*s)
  184. }
  185. return eu
  186. }
  187. // SetScene sets the "scene" field.
  188. func (eu *EmployeeUpdate) SetScene(s string) *EmployeeUpdate {
  189. eu.mutation.SetScene(s)
  190. return eu
  191. }
  192. // SetNillableScene sets the "scene" field if the given value is not nil.
  193. func (eu *EmployeeUpdate) SetNillableScene(s *string) *EmployeeUpdate {
  194. if s != nil {
  195. eu.SetScene(*s)
  196. }
  197. return eu
  198. }
  199. // SetSwitchIn sets the "switch_in" field.
  200. func (eu *EmployeeUpdate) SetSwitchIn(s string) *EmployeeUpdate {
  201. eu.mutation.SetSwitchIn(s)
  202. return eu
  203. }
  204. // SetNillableSwitchIn sets the "switch_in" field if the given value is not nil.
  205. func (eu *EmployeeUpdate) SetNillableSwitchIn(s *string) *EmployeeUpdate {
  206. if s != nil {
  207. eu.SetSwitchIn(*s)
  208. }
  209. return eu
  210. }
  211. // SetVideoURL sets the "video_url" field.
  212. func (eu *EmployeeUpdate) SetVideoURL(s string) *EmployeeUpdate {
  213. eu.mutation.SetVideoURL(s)
  214. return eu
  215. }
  216. // SetNillableVideoURL sets the "video_url" field if the given value is not nil.
  217. func (eu *EmployeeUpdate) SetNillableVideoURL(s *string) *EmployeeUpdate {
  218. if s != nil {
  219. eu.SetVideoURL(*s)
  220. }
  221. return eu
  222. }
  223. // SetOrganizationID sets the "organization_id" field.
  224. func (eu *EmployeeUpdate) SetOrganizationID(u uint64) *EmployeeUpdate {
  225. eu.mutation.ResetOrganizationID()
  226. eu.mutation.SetOrganizationID(u)
  227. return eu
  228. }
  229. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  230. func (eu *EmployeeUpdate) SetNillableOrganizationID(u *uint64) *EmployeeUpdate {
  231. if u != nil {
  232. eu.SetOrganizationID(*u)
  233. }
  234. return eu
  235. }
  236. // AddOrganizationID adds u to the "organization_id" field.
  237. func (eu *EmployeeUpdate) AddOrganizationID(u int64) *EmployeeUpdate {
  238. eu.mutation.AddOrganizationID(u)
  239. return eu
  240. }
  241. // AddEmWorkExperienceIDs adds the "em_work_experiences" edge to the WorkExperience entity by IDs.
  242. func (eu *EmployeeUpdate) AddEmWorkExperienceIDs(ids ...uint64) *EmployeeUpdate {
  243. eu.mutation.AddEmWorkExperienceIDs(ids...)
  244. return eu
  245. }
  246. // AddEmWorkExperiences adds the "em_work_experiences" edges to the WorkExperience entity.
  247. func (eu *EmployeeUpdate) AddEmWorkExperiences(w ...*WorkExperience) *EmployeeUpdate {
  248. ids := make([]uint64, len(w))
  249. for i := range w {
  250. ids[i] = w[i].ID
  251. }
  252. return eu.AddEmWorkExperienceIDs(ids...)
  253. }
  254. // AddEmTutorialIDs adds the "em_tutorial" edge to the Tutorial entity by IDs.
  255. func (eu *EmployeeUpdate) AddEmTutorialIDs(ids ...uint64) *EmployeeUpdate {
  256. eu.mutation.AddEmTutorialIDs(ids...)
  257. return eu
  258. }
  259. // AddEmTutorial adds the "em_tutorial" edges to the Tutorial entity.
  260. func (eu *EmployeeUpdate) AddEmTutorial(t ...*Tutorial) *EmployeeUpdate {
  261. ids := make([]uint64, len(t))
  262. for i := range t {
  263. ids[i] = t[i].ID
  264. }
  265. return eu.AddEmTutorialIDs(ids...)
  266. }
  267. // Mutation returns the EmployeeMutation object of the builder.
  268. func (eu *EmployeeUpdate) Mutation() *EmployeeMutation {
  269. return eu.mutation
  270. }
  271. // ClearEmWorkExperiences clears all "em_work_experiences" edges to the WorkExperience entity.
  272. func (eu *EmployeeUpdate) ClearEmWorkExperiences() *EmployeeUpdate {
  273. eu.mutation.ClearEmWorkExperiences()
  274. return eu
  275. }
  276. // RemoveEmWorkExperienceIDs removes the "em_work_experiences" edge to WorkExperience entities by IDs.
  277. func (eu *EmployeeUpdate) RemoveEmWorkExperienceIDs(ids ...uint64) *EmployeeUpdate {
  278. eu.mutation.RemoveEmWorkExperienceIDs(ids...)
  279. return eu
  280. }
  281. // RemoveEmWorkExperiences removes "em_work_experiences" edges to WorkExperience entities.
  282. func (eu *EmployeeUpdate) RemoveEmWorkExperiences(w ...*WorkExperience) *EmployeeUpdate {
  283. ids := make([]uint64, len(w))
  284. for i := range w {
  285. ids[i] = w[i].ID
  286. }
  287. return eu.RemoveEmWorkExperienceIDs(ids...)
  288. }
  289. // ClearEmTutorial clears all "em_tutorial" edges to the Tutorial entity.
  290. func (eu *EmployeeUpdate) ClearEmTutorial() *EmployeeUpdate {
  291. eu.mutation.ClearEmTutorial()
  292. return eu
  293. }
  294. // RemoveEmTutorialIDs removes the "em_tutorial" edge to Tutorial entities by IDs.
  295. func (eu *EmployeeUpdate) RemoveEmTutorialIDs(ids ...uint64) *EmployeeUpdate {
  296. eu.mutation.RemoveEmTutorialIDs(ids...)
  297. return eu
  298. }
  299. // RemoveEmTutorial removes "em_tutorial" edges to Tutorial entities.
  300. func (eu *EmployeeUpdate) RemoveEmTutorial(t ...*Tutorial) *EmployeeUpdate {
  301. ids := make([]uint64, len(t))
  302. for i := range t {
  303. ids[i] = t[i].ID
  304. }
  305. return eu.RemoveEmTutorialIDs(ids...)
  306. }
  307. // Save executes the query and returns the number of nodes affected by the update operation.
  308. func (eu *EmployeeUpdate) Save(ctx context.Context) (int, error) {
  309. if err := eu.defaults(); err != nil {
  310. return 0, err
  311. }
  312. return withHooks(ctx, eu.sqlSave, eu.mutation, eu.hooks)
  313. }
  314. // SaveX is like Save, but panics if an error occurs.
  315. func (eu *EmployeeUpdate) SaveX(ctx context.Context) int {
  316. affected, err := eu.Save(ctx)
  317. if err != nil {
  318. panic(err)
  319. }
  320. return affected
  321. }
  322. // Exec executes the query.
  323. func (eu *EmployeeUpdate) Exec(ctx context.Context) error {
  324. _, err := eu.Save(ctx)
  325. return err
  326. }
  327. // ExecX is like Exec, but panics if an error occurs.
  328. func (eu *EmployeeUpdate) ExecX(ctx context.Context) {
  329. if err := eu.Exec(ctx); err != nil {
  330. panic(err)
  331. }
  332. }
  333. // defaults sets the default values of the builder before save.
  334. func (eu *EmployeeUpdate) defaults() error {
  335. if _, ok := eu.mutation.UpdatedAt(); !ok {
  336. if employee.UpdateDefaultUpdatedAt == nil {
  337. return fmt.Errorf("ent: uninitialized employee.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  338. }
  339. v := employee.UpdateDefaultUpdatedAt()
  340. eu.mutation.SetUpdatedAt(v)
  341. }
  342. return nil
  343. }
  344. // check runs all checks and user-defined validators on the builder.
  345. func (eu *EmployeeUpdate) check() error {
  346. if v, ok := eu.mutation.Title(); ok {
  347. if err := employee.TitleValidator(v); err != nil {
  348. return &ValidationError{Name: "title", err: fmt.Errorf(`ent: validator failed for field "Employee.title": %w`, err)}
  349. }
  350. }
  351. if v, ok := eu.mutation.Avatar(); ok {
  352. if err := employee.AvatarValidator(v); err != nil {
  353. return &ValidationError{Name: "avatar", err: fmt.Errorf(`ent: validator failed for field "Employee.avatar": %w`, err)}
  354. }
  355. }
  356. if v, ok := eu.mutation.Tags(); ok {
  357. if err := employee.TagsValidator(v); err != nil {
  358. return &ValidationError{Name: "tags", err: fmt.Errorf(`ent: validator failed for field "Employee.tags": %w`, err)}
  359. }
  360. }
  361. if v, ok := eu.mutation.HireCount(); ok {
  362. if err := employee.HireCountValidator(v); err != nil {
  363. return &ValidationError{Name: "hire_count", err: fmt.Errorf(`ent: validator failed for field "Employee.hire_count": %w`, err)}
  364. }
  365. }
  366. if v, ok := eu.mutation.ServiceCount(); ok {
  367. if err := employee.ServiceCountValidator(v); err != nil {
  368. return &ValidationError{Name: "service_count", err: fmt.Errorf(`ent: validator failed for field "Employee.service_count": %w`, err)}
  369. }
  370. }
  371. if v, ok := eu.mutation.AchievementCount(); ok {
  372. if err := employee.AchievementCountValidator(v); err != nil {
  373. return &ValidationError{Name: "achievement_count", err: fmt.Errorf(`ent: validator failed for field "Employee.achievement_count": %w`, err)}
  374. }
  375. }
  376. if v, ok := eu.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 v, ok := eu.mutation.Estimate(); ok {
  382. if err := employee.EstimateValidator(v); err != nil {
  383. return &ValidationError{Name: "estimate", err: fmt.Errorf(`ent: validator failed for field "Employee.estimate": %w`, err)}
  384. }
  385. }
  386. if v, ok := eu.mutation.Skill(); ok {
  387. if err := employee.SkillValidator(v); err != nil {
  388. return &ValidationError{Name: "skill", err: fmt.Errorf(`ent: validator failed for field "Employee.skill": %w`, err)}
  389. }
  390. }
  391. if v, ok := eu.mutation.VideoURL(); ok {
  392. if err := employee.VideoURLValidator(v); err != nil {
  393. return &ValidationError{Name: "video_url", err: fmt.Errorf(`ent: validator failed for field "Employee.video_url": %w`, err)}
  394. }
  395. }
  396. if v, ok := eu.mutation.OrganizationID(); ok {
  397. if err := employee.OrganizationIDValidator(v); err != nil {
  398. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Employee.organization_id": %w`, err)}
  399. }
  400. }
  401. return nil
  402. }
  403. func (eu *EmployeeUpdate) sqlSave(ctx context.Context) (n int, err error) {
  404. if err := eu.check(); err != nil {
  405. return n, err
  406. }
  407. _spec := sqlgraph.NewUpdateSpec(employee.Table, employee.Columns, sqlgraph.NewFieldSpec(employee.FieldID, field.TypeUint64))
  408. if ps := eu.mutation.predicates; len(ps) > 0 {
  409. _spec.Predicate = func(selector *sql.Selector) {
  410. for i := range ps {
  411. ps[i](selector)
  412. }
  413. }
  414. }
  415. if value, ok := eu.mutation.UpdatedAt(); ok {
  416. _spec.SetField(employee.FieldUpdatedAt, field.TypeTime, value)
  417. }
  418. if value, ok := eu.mutation.DeletedAt(); ok {
  419. _spec.SetField(employee.FieldDeletedAt, field.TypeTime, value)
  420. }
  421. if eu.mutation.DeletedAtCleared() {
  422. _spec.ClearField(employee.FieldDeletedAt, field.TypeTime)
  423. }
  424. if value, ok := eu.mutation.Title(); ok {
  425. _spec.SetField(employee.FieldTitle, field.TypeString, value)
  426. }
  427. if value, ok := eu.mutation.Avatar(); ok {
  428. _spec.SetField(employee.FieldAvatar, field.TypeString, value)
  429. }
  430. if value, ok := eu.mutation.Tags(); ok {
  431. _spec.SetField(employee.FieldTags, field.TypeString, value)
  432. }
  433. if value, ok := eu.mutation.HireCount(); ok {
  434. _spec.SetField(employee.FieldHireCount, field.TypeInt, value)
  435. }
  436. if value, ok := eu.mutation.AddedHireCount(); ok {
  437. _spec.AddField(employee.FieldHireCount, field.TypeInt, value)
  438. }
  439. if value, ok := eu.mutation.ServiceCount(); ok {
  440. _spec.SetField(employee.FieldServiceCount, field.TypeInt, value)
  441. }
  442. if value, ok := eu.mutation.AddedServiceCount(); ok {
  443. _spec.AddField(employee.FieldServiceCount, field.TypeInt, value)
  444. }
  445. if value, ok := eu.mutation.AchievementCount(); ok {
  446. _spec.SetField(employee.FieldAchievementCount, field.TypeInt, value)
  447. }
  448. if value, ok := eu.mutation.AddedAchievementCount(); ok {
  449. _spec.AddField(employee.FieldAchievementCount, field.TypeInt, value)
  450. }
  451. if value, ok := eu.mutation.Intro(); ok {
  452. _spec.SetField(employee.FieldIntro, field.TypeString, value)
  453. }
  454. if value, ok := eu.mutation.Estimate(); ok {
  455. _spec.SetField(employee.FieldEstimate, field.TypeString, value)
  456. }
  457. if value, ok := eu.mutation.Skill(); ok {
  458. _spec.SetField(employee.FieldSkill, field.TypeString, value)
  459. }
  460. if value, ok := eu.mutation.AbilityType(); ok {
  461. _spec.SetField(employee.FieldAbilityType, field.TypeString, value)
  462. }
  463. if value, ok := eu.mutation.Scene(); ok {
  464. _spec.SetField(employee.FieldScene, field.TypeString, value)
  465. }
  466. if value, ok := eu.mutation.SwitchIn(); ok {
  467. _spec.SetField(employee.FieldSwitchIn, field.TypeString, value)
  468. }
  469. if value, ok := eu.mutation.VideoURL(); ok {
  470. _spec.SetField(employee.FieldVideoURL, field.TypeString, value)
  471. }
  472. if value, ok := eu.mutation.OrganizationID(); ok {
  473. _spec.SetField(employee.FieldOrganizationID, field.TypeUint64, value)
  474. }
  475. if value, ok := eu.mutation.AddedOrganizationID(); ok {
  476. _spec.AddField(employee.FieldOrganizationID, field.TypeUint64, value)
  477. }
  478. if eu.mutation.EmWorkExperiencesCleared() {
  479. edge := &sqlgraph.EdgeSpec{
  480. Rel: sqlgraph.O2M,
  481. Inverse: false,
  482. Table: employee.EmWorkExperiencesTable,
  483. Columns: []string{employee.EmWorkExperiencesColumn},
  484. Bidi: false,
  485. Target: &sqlgraph.EdgeTarget{
  486. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  487. },
  488. }
  489. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  490. }
  491. if nodes := eu.mutation.RemovedEmWorkExperiencesIDs(); len(nodes) > 0 && !eu.mutation.EmWorkExperiencesCleared() {
  492. edge := &sqlgraph.EdgeSpec{
  493. Rel: sqlgraph.O2M,
  494. Inverse: false,
  495. Table: employee.EmWorkExperiencesTable,
  496. Columns: []string{employee.EmWorkExperiencesColumn},
  497. Bidi: false,
  498. Target: &sqlgraph.EdgeTarget{
  499. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  500. },
  501. }
  502. for _, k := range nodes {
  503. edge.Target.Nodes = append(edge.Target.Nodes, k)
  504. }
  505. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  506. }
  507. if nodes := eu.mutation.EmWorkExperiencesIDs(); len(nodes) > 0 {
  508. edge := &sqlgraph.EdgeSpec{
  509. Rel: sqlgraph.O2M,
  510. Inverse: false,
  511. Table: employee.EmWorkExperiencesTable,
  512. Columns: []string{employee.EmWorkExperiencesColumn},
  513. Bidi: false,
  514. Target: &sqlgraph.EdgeTarget{
  515. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  516. },
  517. }
  518. for _, k := range nodes {
  519. edge.Target.Nodes = append(edge.Target.Nodes, k)
  520. }
  521. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  522. }
  523. if eu.mutation.EmTutorialCleared() {
  524. edge := &sqlgraph.EdgeSpec{
  525. Rel: sqlgraph.O2M,
  526. Inverse: false,
  527. Table: employee.EmTutorialTable,
  528. Columns: []string{employee.EmTutorialColumn},
  529. Bidi: false,
  530. Target: &sqlgraph.EdgeTarget{
  531. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  532. },
  533. }
  534. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  535. }
  536. if nodes := eu.mutation.RemovedEmTutorialIDs(); len(nodes) > 0 && !eu.mutation.EmTutorialCleared() {
  537. edge := &sqlgraph.EdgeSpec{
  538. Rel: sqlgraph.O2M,
  539. Inverse: false,
  540. Table: employee.EmTutorialTable,
  541. Columns: []string{employee.EmTutorialColumn},
  542. Bidi: false,
  543. Target: &sqlgraph.EdgeTarget{
  544. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  545. },
  546. }
  547. for _, k := range nodes {
  548. edge.Target.Nodes = append(edge.Target.Nodes, k)
  549. }
  550. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  551. }
  552. if nodes := eu.mutation.EmTutorialIDs(); len(nodes) > 0 {
  553. edge := &sqlgraph.EdgeSpec{
  554. Rel: sqlgraph.O2M,
  555. Inverse: false,
  556. Table: employee.EmTutorialTable,
  557. Columns: []string{employee.EmTutorialColumn},
  558. Bidi: false,
  559. Target: &sqlgraph.EdgeTarget{
  560. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  561. },
  562. }
  563. for _, k := range nodes {
  564. edge.Target.Nodes = append(edge.Target.Nodes, k)
  565. }
  566. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  567. }
  568. if n, err = sqlgraph.UpdateNodes(ctx, eu.driver, _spec); err != nil {
  569. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  570. err = &NotFoundError{employee.Label}
  571. } else if sqlgraph.IsConstraintError(err) {
  572. err = &ConstraintError{msg: err.Error(), wrap: err}
  573. }
  574. return 0, err
  575. }
  576. eu.mutation.done = true
  577. return n, nil
  578. }
  579. // EmployeeUpdateOne is the builder for updating a single Employee entity.
  580. type EmployeeUpdateOne struct {
  581. config
  582. fields []string
  583. hooks []Hook
  584. mutation *EmployeeMutation
  585. }
  586. // SetUpdatedAt sets the "updated_at" field.
  587. func (euo *EmployeeUpdateOne) SetUpdatedAt(t time.Time) *EmployeeUpdateOne {
  588. euo.mutation.SetUpdatedAt(t)
  589. return euo
  590. }
  591. // SetDeletedAt sets the "deleted_at" field.
  592. func (euo *EmployeeUpdateOne) SetDeletedAt(t time.Time) *EmployeeUpdateOne {
  593. euo.mutation.SetDeletedAt(t)
  594. return euo
  595. }
  596. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  597. func (euo *EmployeeUpdateOne) SetNillableDeletedAt(t *time.Time) *EmployeeUpdateOne {
  598. if t != nil {
  599. euo.SetDeletedAt(*t)
  600. }
  601. return euo
  602. }
  603. // ClearDeletedAt clears the value of the "deleted_at" field.
  604. func (euo *EmployeeUpdateOne) ClearDeletedAt() *EmployeeUpdateOne {
  605. euo.mutation.ClearDeletedAt()
  606. return euo
  607. }
  608. // SetTitle sets the "title" field.
  609. func (euo *EmployeeUpdateOne) SetTitle(s string) *EmployeeUpdateOne {
  610. euo.mutation.SetTitle(s)
  611. return euo
  612. }
  613. // SetNillableTitle sets the "title" field if the given value is not nil.
  614. func (euo *EmployeeUpdateOne) SetNillableTitle(s *string) *EmployeeUpdateOne {
  615. if s != nil {
  616. euo.SetTitle(*s)
  617. }
  618. return euo
  619. }
  620. // SetAvatar sets the "avatar" field.
  621. func (euo *EmployeeUpdateOne) SetAvatar(s string) *EmployeeUpdateOne {
  622. euo.mutation.SetAvatar(s)
  623. return euo
  624. }
  625. // SetNillableAvatar sets the "avatar" field if the given value is not nil.
  626. func (euo *EmployeeUpdateOne) SetNillableAvatar(s *string) *EmployeeUpdateOne {
  627. if s != nil {
  628. euo.SetAvatar(*s)
  629. }
  630. return euo
  631. }
  632. // SetTags sets the "tags" field.
  633. func (euo *EmployeeUpdateOne) SetTags(s string) *EmployeeUpdateOne {
  634. euo.mutation.SetTags(s)
  635. return euo
  636. }
  637. // SetNillableTags sets the "tags" field if the given value is not nil.
  638. func (euo *EmployeeUpdateOne) SetNillableTags(s *string) *EmployeeUpdateOne {
  639. if s != nil {
  640. euo.SetTags(*s)
  641. }
  642. return euo
  643. }
  644. // SetHireCount sets the "hire_count" field.
  645. func (euo *EmployeeUpdateOne) SetHireCount(i int) *EmployeeUpdateOne {
  646. euo.mutation.ResetHireCount()
  647. euo.mutation.SetHireCount(i)
  648. return euo
  649. }
  650. // SetNillableHireCount sets the "hire_count" field if the given value is not nil.
  651. func (euo *EmployeeUpdateOne) SetNillableHireCount(i *int) *EmployeeUpdateOne {
  652. if i != nil {
  653. euo.SetHireCount(*i)
  654. }
  655. return euo
  656. }
  657. // AddHireCount adds i to the "hire_count" field.
  658. func (euo *EmployeeUpdateOne) AddHireCount(i int) *EmployeeUpdateOne {
  659. euo.mutation.AddHireCount(i)
  660. return euo
  661. }
  662. // SetServiceCount sets the "service_count" field.
  663. func (euo *EmployeeUpdateOne) SetServiceCount(i int) *EmployeeUpdateOne {
  664. euo.mutation.ResetServiceCount()
  665. euo.mutation.SetServiceCount(i)
  666. return euo
  667. }
  668. // SetNillableServiceCount sets the "service_count" field if the given value is not nil.
  669. func (euo *EmployeeUpdateOne) SetNillableServiceCount(i *int) *EmployeeUpdateOne {
  670. if i != nil {
  671. euo.SetServiceCount(*i)
  672. }
  673. return euo
  674. }
  675. // AddServiceCount adds i to the "service_count" field.
  676. func (euo *EmployeeUpdateOne) AddServiceCount(i int) *EmployeeUpdateOne {
  677. euo.mutation.AddServiceCount(i)
  678. return euo
  679. }
  680. // SetAchievementCount sets the "achievement_count" field.
  681. func (euo *EmployeeUpdateOne) SetAchievementCount(i int) *EmployeeUpdateOne {
  682. euo.mutation.ResetAchievementCount()
  683. euo.mutation.SetAchievementCount(i)
  684. return euo
  685. }
  686. // SetNillableAchievementCount sets the "achievement_count" field if the given value is not nil.
  687. func (euo *EmployeeUpdateOne) SetNillableAchievementCount(i *int) *EmployeeUpdateOne {
  688. if i != nil {
  689. euo.SetAchievementCount(*i)
  690. }
  691. return euo
  692. }
  693. // AddAchievementCount adds i to the "achievement_count" field.
  694. func (euo *EmployeeUpdateOne) AddAchievementCount(i int) *EmployeeUpdateOne {
  695. euo.mutation.AddAchievementCount(i)
  696. return euo
  697. }
  698. // SetIntro sets the "intro" field.
  699. func (euo *EmployeeUpdateOne) SetIntro(s string) *EmployeeUpdateOne {
  700. euo.mutation.SetIntro(s)
  701. return euo
  702. }
  703. // SetNillableIntro sets the "intro" field if the given value is not nil.
  704. func (euo *EmployeeUpdateOne) SetNillableIntro(s *string) *EmployeeUpdateOne {
  705. if s != nil {
  706. euo.SetIntro(*s)
  707. }
  708. return euo
  709. }
  710. // SetEstimate sets the "estimate" field.
  711. func (euo *EmployeeUpdateOne) SetEstimate(s string) *EmployeeUpdateOne {
  712. euo.mutation.SetEstimate(s)
  713. return euo
  714. }
  715. // SetNillableEstimate sets the "estimate" field if the given value is not nil.
  716. func (euo *EmployeeUpdateOne) SetNillableEstimate(s *string) *EmployeeUpdateOne {
  717. if s != nil {
  718. euo.SetEstimate(*s)
  719. }
  720. return euo
  721. }
  722. // SetSkill sets the "skill" field.
  723. func (euo *EmployeeUpdateOne) SetSkill(s string) *EmployeeUpdateOne {
  724. euo.mutation.SetSkill(s)
  725. return euo
  726. }
  727. // SetNillableSkill sets the "skill" field if the given value is not nil.
  728. func (euo *EmployeeUpdateOne) SetNillableSkill(s *string) *EmployeeUpdateOne {
  729. if s != nil {
  730. euo.SetSkill(*s)
  731. }
  732. return euo
  733. }
  734. // SetAbilityType sets the "ability_type" field.
  735. func (euo *EmployeeUpdateOne) SetAbilityType(s string) *EmployeeUpdateOne {
  736. euo.mutation.SetAbilityType(s)
  737. return euo
  738. }
  739. // SetNillableAbilityType sets the "ability_type" field if the given value is not nil.
  740. func (euo *EmployeeUpdateOne) SetNillableAbilityType(s *string) *EmployeeUpdateOne {
  741. if s != nil {
  742. euo.SetAbilityType(*s)
  743. }
  744. return euo
  745. }
  746. // SetScene sets the "scene" field.
  747. func (euo *EmployeeUpdateOne) SetScene(s string) *EmployeeUpdateOne {
  748. euo.mutation.SetScene(s)
  749. return euo
  750. }
  751. // SetNillableScene sets the "scene" field if the given value is not nil.
  752. func (euo *EmployeeUpdateOne) SetNillableScene(s *string) *EmployeeUpdateOne {
  753. if s != nil {
  754. euo.SetScene(*s)
  755. }
  756. return euo
  757. }
  758. // SetSwitchIn sets the "switch_in" field.
  759. func (euo *EmployeeUpdateOne) SetSwitchIn(s string) *EmployeeUpdateOne {
  760. euo.mutation.SetSwitchIn(s)
  761. return euo
  762. }
  763. // SetNillableSwitchIn sets the "switch_in" field if the given value is not nil.
  764. func (euo *EmployeeUpdateOne) SetNillableSwitchIn(s *string) *EmployeeUpdateOne {
  765. if s != nil {
  766. euo.SetSwitchIn(*s)
  767. }
  768. return euo
  769. }
  770. // SetVideoURL sets the "video_url" field.
  771. func (euo *EmployeeUpdateOne) SetVideoURL(s string) *EmployeeUpdateOne {
  772. euo.mutation.SetVideoURL(s)
  773. return euo
  774. }
  775. // SetNillableVideoURL sets the "video_url" field if the given value is not nil.
  776. func (euo *EmployeeUpdateOne) SetNillableVideoURL(s *string) *EmployeeUpdateOne {
  777. if s != nil {
  778. euo.SetVideoURL(*s)
  779. }
  780. return euo
  781. }
  782. // SetOrganizationID sets the "organization_id" field.
  783. func (euo *EmployeeUpdateOne) SetOrganizationID(u uint64) *EmployeeUpdateOne {
  784. euo.mutation.ResetOrganizationID()
  785. euo.mutation.SetOrganizationID(u)
  786. return euo
  787. }
  788. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  789. func (euo *EmployeeUpdateOne) SetNillableOrganizationID(u *uint64) *EmployeeUpdateOne {
  790. if u != nil {
  791. euo.SetOrganizationID(*u)
  792. }
  793. return euo
  794. }
  795. // AddOrganizationID adds u to the "organization_id" field.
  796. func (euo *EmployeeUpdateOne) AddOrganizationID(u int64) *EmployeeUpdateOne {
  797. euo.mutation.AddOrganizationID(u)
  798. return euo
  799. }
  800. // AddEmWorkExperienceIDs adds the "em_work_experiences" edge to the WorkExperience entity by IDs.
  801. func (euo *EmployeeUpdateOne) AddEmWorkExperienceIDs(ids ...uint64) *EmployeeUpdateOne {
  802. euo.mutation.AddEmWorkExperienceIDs(ids...)
  803. return euo
  804. }
  805. // AddEmWorkExperiences adds the "em_work_experiences" edges to the WorkExperience entity.
  806. func (euo *EmployeeUpdateOne) AddEmWorkExperiences(w ...*WorkExperience) *EmployeeUpdateOne {
  807. ids := make([]uint64, len(w))
  808. for i := range w {
  809. ids[i] = w[i].ID
  810. }
  811. return euo.AddEmWorkExperienceIDs(ids...)
  812. }
  813. // AddEmTutorialIDs adds the "em_tutorial" edge to the Tutorial entity by IDs.
  814. func (euo *EmployeeUpdateOne) AddEmTutorialIDs(ids ...uint64) *EmployeeUpdateOne {
  815. euo.mutation.AddEmTutorialIDs(ids...)
  816. return euo
  817. }
  818. // AddEmTutorial adds the "em_tutorial" edges to the Tutorial entity.
  819. func (euo *EmployeeUpdateOne) AddEmTutorial(t ...*Tutorial) *EmployeeUpdateOne {
  820. ids := make([]uint64, len(t))
  821. for i := range t {
  822. ids[i] = t[i].ID
  823. }
  824. return euo.AddEmTutorialIDs(ids...)
  825. }
  826. // Mutation returns the EmployeeMutation object of the builder.
  827. func (euo *EmployeeUpdateOne) Mutation() *EmployeeMutation {
  828. return euo.mutation
  829. }
  830. // ClearEmWorkExperiences clears all "em_work_experiences" edges to the WorkExperience entity.
  831. func (euo *EmployeeUpdateOne) ClearEmWorkExperiences() *EmployeeUpdateOne {
  832. euo.mutation.ClearEmWorkExperiences()
  833. return euo
  834. }
  835. // RemoveEmWorkExperienceIDs removes the "em_work_experiences" edge to WorkExperience entities by IDs.
  836. func (euo *EmployeeUpdateOne) RemoveEmWorkExperienceIDs(ids ...uint64) *EmployeeUpdateOne {
  837. euo.mutation.RemoveEmWorkExperienceIDs(ids...)
  838. return euo
  839. }
  840. // RemoveEmWorkExperiences removes "em_work_experiences" edges to WorkExperience entities.
  841. func (euo *EmployeeUpdateOne) RemoveEmWorkExperiences(w ...*WorkExperience) *EmployeeUpdateOne {
  842. ids := make([]uint64, len(w))
  843. for i := range w {
  844. ids[i] = w[i].ID
  845. }
  846. return euo.RemoveEmWorkExperienceIDs(ids...)
  847. }
  848. // ClearEmTutorial clears all "em_tutorial" edges to the Tutorial entity.
  849. func (euo *EmployeeUpdateOne) ClearEmTutorial() *EmployeeUpdateOne {
  850. euo.mutation.ClearEmTutorial()
  851. return euo
  852. }
  853. // RemoveEmTutorialIDs removes the "em_tutorial" edge to Tutorial entities by IDs.
  854. func (euo *EmployeeUpdateOne) RemoveEmTutorialIDs(ids ...uint64) *EmployeeUpdateOne {
  855. euo.mutation.RemoveEmTutorialIDs(ids...)
  856. return euo
  857. }
  858. // RemoveEmTutorial removes "em_tutorial" edges to Tutorial entities.
  859. func (euo *EmployeeUpdateOne) RemoveEmTutorial(t ...*Tutorial) *EmployeeUpdateOne {
  860. ids := make([]uint64, len(t))
  861. for i := range t {
  862. ids[i] = t[i].ID
  863. }
  864. return euo.RemoveEmTutorialIDs(ids...)
  865. }
  866. // Where appends a list predicates to the EmployeeUpdate builder.
  867. func (euo *EmployeeUpdateOne) Where(ps ...predicate.Employee) *EmployeeUpdateOne {
  868. euo.mutation.Where(ps...)
  869. return euo
  870. }
  871. // Select allows selecting one or more fields (columns) of the returned entity.
  872. // The default is selecting all fields defined in the entity schema.
  873. func (euo *EmployeeUpdateOne) Select(field string, fields ...string) *EmployeeUpdateOne {
  874. euo.fields = append([]string{field}, fields...)
  875. return euo
  876. }
  877. // Save executes the query and returns the updated Employee entity.
  878. func (euo *EmployeeUpdateOne) Save(ctx context.Context) (*Employee, error) {
  879. if err := euo.defaults(); err != nil {
  880. return nil, err
  881. }
  882. return withHooks(ctx, euo.sqlSave, euo.mutation, euo.hooks)
  883. }
  884. // SaveX is like Save, but panics if an error occurs.
  885. func (euo *EmployeeUpdateOne) SaveX(ctx context.Context) *Employee {
  886. node, err := euo.Save(ctx)
  887. if err != nil {
  888. panic(err)
  889. }
  890. return node
  891. }
  892. // Exec executes the query on the entity.
  893. func (euo *EmployeeUpdateOne) Exec(ctx context.Context) error {
  894. _, err := euo.Save(ctx)
  895. return err
  896. }
  897. // ExecX is like Exec, but panics if an error occurs.
  898. func (euo *EmployeeUpdateOne) ExecX(ctx context.Context) {
  899. if err := euo.Exec(ctx); err != nil {
  900. panic(err)
  901. }
  902. }
  903. // defaults sets the default values of the builder before save.
  904. func (euo *EmployeeUpdateOne) defaults() error {
  905. if _, ok := euo.mutation.UpdatedAt(); !ok {
  906. if employee.UpdateDefaultUpdatedAt == nil {
  907. return fmt.Errorf("ent: uninitialized employee.UpdateDefaultUpdatedAt (forgotten import ent/runtime?)")
  908. }
  909. v := employee.UpdateDefaultUpdatedAt()
  910. euo.mutation.SetUpdatedAt(v)
  911. }
  912. return nil
  913. }
  914. // check runs all checks and user-defined validators on the builder.
  915. func (euo *EmployeeUpdateOne) check() error {
  916. if v, ok := euo.mutation.Title(); ok {
  917. if err := employee.TitleValidator(v); err != nil {
  918. return &ValidationError{Name: "title", err: fmt.Errorf(`ent: validator failed for field "Employee.title": %w`, err)}
  919. }
  920. }
  921. if v, ok := euo.mutation.Avatar(); ok {
  922. if err := employee.AvatarValidator(v); err != nil {
  923. return &ValidationError{Name: "avatar", err: fmt.Errorf(`ent: validator failed for field "Employee.avatar": %w`, err)}
  924. }
  925. }
  926. if v, ok := euo.mutation.Tags(); ok {
  927. if err := employee.TagsValidator(v); err != nil {
  928. return &ValidationError{Name: "tags", err: fmt.Errorf(`ent: validator failed for field "Employee.tags": %w`, err)}
  929. }
  930. }
  931. if v, ok := euo.mutation.HireCount(); ok {
  932. if err := employee.HireCountValidator(v); err != nil {
  933. return &ValidationError{Name: "hire_count", err: fmt.Errorf(`ent: validator failed for field "Employee.hire_count": %w`, err)}
  934. }
  935. }
  936. if v, ok := euo.mutation.ServiceCount(); ok {
  937. if err := employee.ServiceCountValidator(v); err != nil {
  938. return &ValidationError{Name: "service_count", err: fmt.Errorf(`ent: validator failed for field "Employee.service_count": %w`, err)}
  939. }
  940. }
  941. if v, ok := euo.mutation.AchievementCount(); ok {
  942. if err := employee.AchievementCountValidator(v); err != nil {
  943. return &ValidationError{Name: "achievement_count", err: fmt.Errorf(`ent: validator failed for field "Employee.achievement_count": %w`, err)}
  944. }
  945. }
  946. if v, ok := euo.mutation.Intro(); ok {
  947. if err := employee.IntroValidator(v); err != nil {
  948. return &ValidationError{Name: "intro", err: fmt.Errorf(`ent: validator failed for field "Employee.intro": %w`, err)}
  949. }
  950. }
  951. if v, ok := euo.mutation.Estimate(); ok {
  952. if err := employee.EstimateValidator(v); err != nil {
  953. return &ValidationError{Name: "estimate", err: fmt.Errorf(`ent: validator failed for field "Employee.estimate": %w`, err)}
  954. }
  955. }
  956. if v, ok := euo.mutation.Skill(); ok {
  957. if err := employee.SkillValidator(v); err != nil {
  958. return &ValidationError{Name: "skill", err: fmt.Errorf(`ent: validator failed for field "Employee.skill": %w`, err)}
  959. }
  960. }
  961. if v, ok := euo.mutation.VideoURL(); ok {
  962. if err := employee.VideoURLValidator(v); err != nil {
  963. return &ValidationError{Name: "video_url", err: fmt.Errorf(`ent: validator failed for field "Employee.video_url": %w`, err)}
  964. }
  965. }
  966. if v, ok := euo.mutation.OrganizationID(); ok {
  967. if err := employee.OrganizationIDValidator(v); err != nil {
  968. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Employee.organization_id": %w`, err)}
  969. }
  970. }
  971. return nil
  972. }
  973. func (euo *EmployeeUpdateOne) sqlSave(ctx context.Context) (_node *Employee, err error) {
  974. if err := euo.check(); err != nil {
  975. return _node, err
  976. }
  977. _spec := sqlgraph.NewUpdateSpec(employee.Table, employee.Columns, sqlgraph.NewFieldSpec(employee.FieldID, field.TypeUint64))
  978. id, ok := euo.mutation.ID()
  979. if !ok {
  980. return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Employee.id" for update`)}
  981. }
  982. _spec.Node.ID.Value = id
  983. if fields := euo.fields; len(fields) > 0 {
  984. _spec.Node.Columns = make([]string, 0, len(fields))
  985. _spec.Node.Columns = append(_spec.Node.Columns, employee.FieldID)
  986. for _, f := range fields {
  987. if !employee.ValidColumn(f) {
  988. return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
  989. }
  990. if f != employee.FieldID {
  991. _spec.Node.Columns = append(_spec.Node.Columns, f)
  992. }
  993. }
  994. }
  995. if ps := euo.mutation.predicates; len(ps) > 0 {
  996. _spec.Predicate = func(selector *sql.Selector) {
  997. for i := range ps {
  998. ps[i](selector)
  999. }
  1000. }
  1001. }
  1002. if value, ok := euo.mutation.UpdatedAt(); ok {
  1003. _spec.SetField(employee.FieldUpdatedAt, field.TypeTime, value)
  1004. }
  1005. if value, ok := euo.mutation.DeletedAt(); ok {
  1006. _spec.SetField(employee.FieldDeletedAt, field.TypeTime, value)
  1007. }
  1008. if euo.mutation.DeletedAtCleared() {
  1009. _spec.ClearField(employee.FieldDeletedAt, field.TypeTime)
  1010. }
  1011. if value, ok := euo.mutation.Title(); ok {
  1012. _spec.SetField(employee.FieldTitle, field.TypeString, value)
  1013. }
  1014. if value, ok := euo.mutation.Avatar(); ok {
  1015. _spec.SetField(employee.FieldAvatar, field.TypeString, value)
  1016. }
  1017. if value, ok := euo.mutation.Tags(); ok {
  1018. _spec.SetField(employee.FieldTags, field.TypeString, value)
  1019. }
  1020. if value, ok := euo.mutation.HireCount(); ok {
  1021. _spec.SetField(employee.FieldHireCount, field.TypeInt, value)
  1022. }
  1023. if value, ok := euo.mutation.AddedHireCount(); ok {
  1024. _spec.AddField(employee.FieldHireCount, field.TypeInt, value)
  1025. }
  1026. if value, ok := euo.mutation.ServiceCount(); ok {
  1027. _spec.SetField(employee.FieldServiceCount, field.TypeInt, value)
  1028. }
  1029. if value, ok := euo.mutation.AddedServiceCount(); ok {
  1030. _spec.AddField(employee.FieldServiceCount, field.TypeInt, value)
  1031. }
  1032. if value, ok := euo.mutation.AchievementCount(); ok {
  1033. _spec.SetField(employee.FieldAchievementCount, field.TypeInt, value)
  1034. }
  1035. if value, ok := euo.mutation.AddedAchievementCount(); ok {
  1036. _spec.AddField(employee.FieldAchievementCount, field.TypeInt, value)
  1037. }
  1038. if value, ok := euo.mutation.Intro(); ok {
  1039. _spec.SetField(employee.FieldIntro, field.TypeString, value)
  1040. }
  1041. if value, ok := euo.mutation.Estimate(); ok {
  1042. _spec.SetField(employee.FieldEstimate, field.TypeString, value)
  1043. }
  1044. if value, ok := euo.mutation.Skill(); ok {
  1045. _spec.SetField(employee.FieldSkill, field.TypeString, value)
  1046. }
  1047. if value, ok := euo.mutation.AbilityType(); ok {
  1048. _spec.SetField(employee.FieldAbilityType, field.TypeString, value)
  1049. }
  1050. if value, ok := euo.mutation.Scene(); ok {
  1051. _spec.SetField(employee.FieldScene, field.TypeString, value)
  1052. }
  1053. if value, ok := euo.mutation.SwitchIn(); ok {
  1054. _spec.SetField(employee.FieldSwitchIn, field.TypeString, value)
  1055. }
  1056. if value, ok := euo.mutation.VideoURL(); ok {
  1057. _spec.SetField(employee.FieldVideoURL, field.TypeString, value)
  1058. }
  1059. if value, ok := euo.mutation.OrganizationID(); ok {
  1060. _spec.SetField(employee.FieldOrganizationID, field.TypeUint64, value)
  1061. }
  1062. if value, ok := euo.mutation.AddedOrganizationID(); ok {
  1063. _spec.AddField(employee.FieldOrganizationID, field.TypeUint64, value)
  1064. }
  1065. if euo.mutation.EmWorkExperiencesCleared() {
  1066. edge := &sqlgraph.EdgeSpec{
  1067. Rel: sqlgraph.O2M,
  1068. Inverse: false,
  1069. Table: employee.EmWorkExperiencesTable,
  1070. Columns: []string{employee.EmWorkExperiencesColumn},
  1071. Bidi: false,
  1072. Target: &sqlgraph.EdgeTarget{
  1073. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  1074. },
  1075. }
  1076. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  1077. }
  1078. if nodes := euo.mutation.RemovedEmWorkExperiencesIDs(); len(nodes) > 0 && !euo.mutation.EmWorkExperiencesCleared() {
  1079. edge := &sqlgraph.EdgeSpec{
  1080. Rel: sqlgraph.O2M,
  1081. Inverse: false,
  1082. Table: employee.EmWorkExperiencesTable,
  1083. Columns: []string{employee.EmWorkExperiencesColumn},
  1084. Bidi: false,
  1085. Target: &sqlgraph.EdgeTarget{
  1086. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  1087. },
  1088. }
  1089. for _, k := range nodes {
  1090. edge.Target.Nodes = append(edge.Target.Nodes, k)
  1091. }
  1092. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  1093. }
  1094. if nodes := euo.mutation.EmWorkExperiencesIDs(); len(nodes) > 0 {
  1095. edge := &sqlgraph.EdgeSpec{
  1096. Rel: sqlgraph.O2M,
  1097. Inverse: false,
  1098. Table: employee.EmWorkExperiencesTable,
  1099. Columns: []string{employee.EmWorkExperiencesColumn},
  1100. Bidi: false,
  1101. Target: &sqlgraph.EdgeTarget{
  1102. IDSpec: sqlgraph.NewFieldSpec(workexperience.FieldID, field.TypeUint64),
  1103. },
  1104. }
  1105. for _, k := range nodes {
  1106. edge.Target.Nodes = append(edge.Target.Nodes, k)
  1107. }
  1108. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  1109. }
  1110. if euo.mutation.EmTutorialCleared() {
  1111. edge := &sqlgraph.EdgeSpec{
  1112. Rel: sqlgraph.O2M,
  1113. Inverse: false,
  1114. Table: employee.EmTutorialTable,
  1115. Columns: []string{employee.EmTutorialColumn},
  1116. Bidi: false,
  1117. Target: &sqlgraph.EdgeTarget{
  1118. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  1119. },
  1120. }
  1121. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  1122. }
  1123. if nodes := euo.mutation.RemovedEmTutorialIDs(); len(nodes) > 0 && !euo.mutation.EmTutorialCleared() {
  1124. edge := &sqlgraph.EdgeSpec{
  1125. Rel: sqlgraph.O2M,
  1126. Inverse: false,
  1127. Table: employee.EmTutorialTable,
  1128. Columns: []string{employee.EmTutorialColumn},
  1129. Bidi: false,
  1130. Target: &sqlgraph.EdgeTarget{
  1131. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  1132. },
  1133. }
  1134. for _, k := range nodes {
  1135. edge.Target.Nodes = append(edge.Target.Nodes, k)
  1136. }
  1137. _spec.Edges.Clear = append(_spec.Edges.Clear, edge)
  1138. }
  1139. if nodes := euo.mutation.EmTutorialIDs(); len(nodes) > 0 {
  1140. edge := &sqlgraph.EdgeSpec{
  1141. Rel: sqlgraph.O2M,
  1142. Inverse: false,
  1143. Table: employee.EmTutorialTable,
  1144. Columns: []string{employee.EmTutorialColumn},
  1145. Bidi: false,
  1146. Target: &sqlgraph.EdgeTarget{
  1147. IDSpec: sqlgraph.NewFieldSpec(tutorial.FieldID, field.TypeUint64),
  1148. },
  1149. }
  1150. for _, k := range nodes {
  1151. edge.Target.Nodes = append(edge.Target.Nodes, k)
  1152. }
  1153. _spec.Edges.Add = append(_spec.Edges.Add, edge)
  1154. }
  1155. _node = &Employee{config: euo.config}
  1156. _spec.Assign = _node.assignValues
  1157. _spec.ScanValues = _node.scanValues
  1158. if err = sqlgraph.UpdateNode(ctx, euo.driver, _spec); err != nil {
  1159. if _, ok := err.(*sqlgraph.NotFoundError); ok {
  1160. err = &NotFoundError{employee.Label}
  1161. } else if sqlgraph.IsConstraintError(err) {
  1162. err = &ConstraintError{msg: err.Error(), wrap: err}
  1163. }
  1164. return nil, err
  1165. }
  1166. euo.mutation.done = true
  1167. return _node, nil
  1168. }