ops_operation_event.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
  3. // ==========================================================================
  4. package internal
  5. import (
  6. "context"
  7. "dashoo.cn/opms_parent/app/model/opsdev"
  8. "database/sql"
  9. "github.com/gogf/gf/database/gdb"
  10. "github.com/gogf/gf/frame/g"
  11. "github.com/gogf/gf/frame/gmvc"
  12. "time"
  13. )
  14. // OpsOperationEventDao is the manager for logic model data accessing
  15. // and custom defined data operations functions management.
  16. type OpsOperationEventDao struct {
  17. gmvc.M
  18. DB gdb.DB
  19. Table string
  20. Columns opsOperationEventColumns
  21. }
  22. // OpsOperationEventColumns defines and stores column names for table ops_operation_event.
  23. type opsOperationEventColumns struct {
  24. Id string // 主键
  25. EventNo string // 事件编号
  26. EventTitle string // 事件标题
  27. EventDesc string // 事件描述
  28. EventType string // 事件类型:10-操作咨询 20-数据处理 30-系统BUG 40-功能调整 50-二开需求 90-其他问题
  29. EventStatus string // 事件状态:10-待处理 20-处理中 30-转研发 70-挂起 80-已关闭
  30. EventResult string // 事件结果:10-已解决 20-部分解决 30-未解决
  31. TotalWorkHour string // 累计工时(小时)
  32. ContractId string // 关联合同ID
  33. ContractName string // 合同名称
  34. CustId string // 关联客户ID
  35. CustName string // 客户名称
  36. ProductLine string // 产品线:10-Biobank 20-LIMS 30-CellLbank
  37. IsBig string // 是否重点项目:10-是 20-否
  38. IsOps string // 是否在运维期:10-是 20-否
  39. PriorityLevel string // 优先级:P1-紧急 P2-一般 P3-低优
  40. FeedbackSource string // 反馈来源:10-客户 20-销售 30-交付
  41. FeedbackReporter string // 反馈人
  42. FeedbackDate string // 反馈时间
  43. OpsUserId string // 运维人员ID
  44. OpsUserName string // 运维人员姓名
  45. AssignTime string // 接单时间
  46. CompleteTime string // 处理完成时间
  47. CompleteDesc string // 处理结果说明
  48. Attribute1 string // 增强字段1
  49. Attribute2 string // 增强字段2
  50. Attribute3 string // 增强字段3
  51. Attribute4 string // 增强字段4
  52. Attribute5 string // 增强字段5
  53. Attribute6 string // 增强字段6
  54. Attribute7 string // 增强字段7
  55. Attribute8 string // 增强字段8
  56. Attribute9 string // 增强字段9
  57. Remark string // 备注
  58. CreatedBy string // 创建者ID
  59. CreatedName string // 创建人姓名
  60. CreatedTime string // 创建时间
  61. UpdatedBy string // 更新者ID
  62. UpdatedName string // 更新人姓名
  63. UpdatedTime string // 更新时间
  64. DeletedTime string // 删除时间(NULL=未删除)
  65. }
  66. var (
  67. // OpsOperationEvent is globally public accessible object for table ops_operation_event operations.
  68. OpsOperationEvent = OpsOperationEventDao{
  69. M: g.DB("default").Model("ops_operation_event").Safe(),
  70. DB: g.DB("default"),
  71. Table: "ops_operation_event",
  72. Columns: opsOperationEventColumns{
  73. Id: "id",
  74. EventNo: "event_no",
  75. EventTitle: "event_title",
  76. EventDesc: "event_desc",
  77. EventType: "event_type",
  78. EventStatus: "event_status",
  79. EventResult: "event_result",
  80. TotalWorkHour: "total_work_hour",
  81. ContractId: "contract_id",
  82. ContractName: "contract_name",
  83. CustId: "cust_id",
  84. CustName: "cust_name",
  85. ProductLine: "product_line",
  86. IsBig: "is_big",
  87. IsOps: "is_ops",
  88. PriorityLevel: "priority_level",
  89. FeedbackSource: "feedback_source",
  90. FeedbackReporter: "feedback_reporter",
  91. FeedbackDate: "feedback_date",
  92. OpsUserId: "ops_user_id",
  93. OpsUserName: "ops_user_name",
  94. AssignTime: "assign_time",
  95. CompleteTime: "complete_time",
  96. CompleteDesc: "complete_desc",
  97. Attribute1: "attribute1",
  98. Attribute2: "attribute2",
  99. Attribute3: "attribute3",
  100. Attribute4: "attribute4",
  101. Attribute5: "attribute5",
  102. Attribute6: "attribute6",
  103. Attribute7: "attribute7",
  104. Attribute8: "attribute8",
  105. Attribute9: "attribute9",
  106. Remark: "remark",
  107. CreatedBy: "created_by",
  108. CreatedName: "created_name",
  109. CreatedTime: "created_time",
  110. UpdatedBy: "updated_by",
  111. UpdatedName: "updated_name",
  112. UpdatedTime: "updated_time",
  113. DeletedTime: "deleted_time",
  114. },
  115. }
  116. )
  117. func NewOpsOperationEventDao(tenant string) OpsOperationEventDao {
  118. var dao OpsOperationEventDao
  119. dao = OpsOperationEventDao{
  120. M: g.DB(tenant).Model("ops_operation_event").Safe(),
  121. DB: g.DB(tenant),
  122. Table: "ops_operation_event",
  123. Columns: opsOperationEventColumns{
  124. Id: "id",
  125. EventNo: "event_no",
  126. EventTitle: "event_title",
  127. EventDesc: "event_desc",
  128. EventType: "event_type",
  129. EventStatus: "event_status",
  130. EventResult: "event_result",
  131. TotalWorkHour: "total_work_hour",
  132. ContractId: "contract_id",
  133. ContractName: "contract_name",
  134. CustId: "cust_id",
  135. CustName: "cust_name",
  136. ProductLine: "product_line",
  137. IsBig: "is_big",
  138. IsOps: "is_ops",
  139. PriorityLevel: "priority_level",
  140. FeedbackSource: "feedback_source",
  141. FeedbackReporter: "feedback_reporter",
  142. FeedbackDate: "feedback_date",
  143. OpsUserId: "ops_user_id",
  144. OpsUserName: "ops_user_name",
  145. AssignTime: "assign_time",
  146. CompleteTime: "complete_time",
  147. CompleteDesc: "complete_desc",
  148. Attribute1: "attribute1",
  149. Attribute2: "attribute2",
  150. Attribute3: "attribute3",
  151. Attribute4: "attribute4",
  152. Attribute5: "attribute5",
  153. Attribute6: "attribute6",
  154. Attribute7: "attribute7",
  155. Attribute8: "attribute8",
  156. Attribute9: "attribute9",
  157. Remark: "remark",
  158. CreatedBy: "created_by",
  159. CreatedName: "created_name",
  160. CreatedTime: "created_time",
  161. UpdatedBy: "updated_by",
  162. UpdatedName: "updated_name",
  163. UpdatedTime: "updated_time",
  164. DeletedTime: "deleted_time",
  165. },
  166. }
  167. return dao
  168. }
  169. // Ctx is a chaining function, which creates and returns a new DB that is a shallow copy
  170. // of current DB object and with given context in it.
  171. // Note that this returned DB object can be used only once, so do not assign it to
  172. // a global or package variable for long using.
  173. func (d *OpsOperationEventDao) Ctx(ctx context.Context) *OpsOperationEventDao {
  174. return &OpsOperationEventDao{M: d.M.Ctx(ctx)}
  175. }
  176. // As sets an alias name for current table.
  177. func (d *OpsOperationEventDao) As(as string) *OpsOperationEventDao {
  178. return &OpsOperationEventDao{M: d.M.As(as)}
  179. }
  180. // TX sets the transaction for current operation.
  181. func (d *OpsOperationEventDao) TX(tx *gdb.TX) *OpsOperationEventDao {
  182. return &OpsOperationEventDao{M: d.M.TX(tx)}
  183. }
  184. // Master marks the following operation on master node.
  185. func (d *OpsOperationEventDao) Master() *OpsOperationEventDao {
  186. return &OpsOperationEventDao{M: d.M.Master()}
  187. }
  188. // Slave marks the following operation on slave node.
  189. // Note that it makes sense only if there's any slave node configured.
  190. func (d *OpsOperationEventDao) Slave() *OpsOperationEventDao {
  191. return &OpsOperationEventDao{M: d.M.Slave()}
  192. }
  193. // Args sets custom arguments for model operation.
  194. func (d *OpsOperationEventDao) Args(args ...interface{}) *OpsOperationEventDao {
  195. return &OpsOperationEventDao{M: d.M.Args(args...)}
  196. }
  197. // LeftJoin does "LEFT JOIN ... ON ..." statement on the model.
  198. // The parameter <table> can be joined table and its joined condition,
  199. // and also with its alias name, like:
  200. // Table("user").LeftJoin("user_detail", "user_detail.uid=user.uid")
  201. // Table("user", "u").LeftJoin("user_detail", "ud", "ud.uid=u.uid")
  202. func (d *OpsOperationEventDao) LeftJoin(table ...string) *OpsOperationEventDao {
  203. return &OpsOperationEventDao{M: d.M.LeftJoin(table...)}
  204. }
  205. // RightJoin does "RIGHT JOIN ... ON ..." statement on the model.
  206. // The parameter <table> can be joined table and its joined condition,
  207. // and also with its alias name, like:
  208. // Table("user").RightJoin("user_detail", "user_detail.uid=user.uid")
  209. // Table("user", "u").RightJoin("user_detail", "ud", "ud.uid=u.uid")
  210. func (d *OpsOperationEventDao) RightJoin(table ...string) *OpsOperationEventDao {
  211. return &OpsOperationEventDao{M: d.M.RightJoin(table...)}
  212. }
  213. // InnerJoin does "INNER JOIN ... ON ..." statement on the model.
  214. // The parameter <table> can be joined table and its joined condition,
  215. // and also with its alias name, like:
  216. // Table("user").InnerJoin("user_detail", "user_detail.uid=user.uid")
  217. // Table("user", "u").InnerJoin("user_detail", "ud", "ud.uid=u.uid")
  218. func (d *OpsOperationEventDao) InnerJoin(table ...string) *OpsOperationEventDao {
  219. return &OpsOperationEventDao{M: d.M.InnerJoin(table...)}
  220. }
  221. // Fields sets the operation fields of the model, multiple fields joined using char ','.
  222. // The parameter <fieldNamesOrMapStruct> can be type of string/map/*map/struct/*struct.
  223. func (d *OpsOperationEventDao) Fields(fieldNamesOrMapStruct ...interface{}) *OpsOperationEventDao {
  224. return &OpsOperationEventDao{M: d.M.Fields(fieldNamesOrMapStruct...)}
  225. }
  226. // FieldsEx sets the excluded operation fields of the model, multiple fields joined using char ','.
  227. // The parameter <fieldNamesOrMapStruct> can be type of string/map/*map/struct/*struct.
  228. func (d *OpsOperationEventDao) FieldsEx(fieldNamesOrMapStruct ...interface{}) *OpsOperationEventDao {
  229. return &OpsOperationEventDao{M: d.M.FieldsEx(fieldNamesOrMapStruct...)}
  230. }
  231. // Option sets the extra operation option for the model.
  232. func (d *OpsOperationEventDao) Option(option int) *OpsOperationEventDao {
  233. return &OpsOperationEventDao{M: d.M.Option(option)}
  234. }
  235. // OmitEmpty sets OPTION_OMITEMPTY option for the model, which automatically filers
  236. // the data and where attributes for empty values.
  237. func (d *OpsOperationEventDao) OmitEmpty() *OpsOperationEventDao {
  238. return &OpsOperationEventDao{M: d.M.OmitEmpty()}
  239. }
  240. // Filter marks filtering the fields which does not exist in the fields of the operated table.
  241. func (d *OpsOperationEventDao) Filter() *OpsOperationEventDao {
  242. return &OpsOperationEventDao{M: d.M.Filter()}
  243. }
  244. // Where sets the condition statement for the model. The parameter <where> can be type of
  245. // string/map/gmap/slice/struct/*struct, etc. Note that, if it's called more than one times,
  246. // multiple conditions will be joined into where statement using "AND".
  247. // Eg:
  248. // Where("uid=10000")
  249. // Where("uid", 10000)
  250. // Where("money>? AND name like ?", 99999, "vip_%")
  251. // Where("uid", 1).Where("name", "john")
  252. // Where("status IN (?)", g.Slice{1,2,3})
  253. // Where("age IN(?,?)", 18, 50)
  254. // Where(User{ Id : 1, UserName : "john"})
  255. func (d *OpsOperationEventDao) Where(where interface{}, args ...interface{}) *OpsOperationEventDao {
  256. return &OpsOperationEventDao{M: d.M.Where(where, args...)}
  257. }
  258. // WherePri does the same logic as M.Where except that if the parameter <where>
  259. // is a single condition like int/string/float/slice, it treats the condition as the primary
  260. // key value. That is, if primary key is "id" and given <where> parameter as "123", the
  261. // WherePri function treats the condition as "id=123", but M.Where treats the condition
  262. // as string "123".
  263. func (d *OpsOperationEventDao) WherePri(where interface{}, args ...interface{}) *OpsOperationEventDao {
  264. return &OpsOperationEventDao{M: d.M.WherePri(where, args...)}
  265. }
  266. // And adds "AND" condition to the where statement.
  267. func (d *OpsOperationEventDao) And(where interface{}, args ...interface{}) *OpsOperationEventDao {
  268. return &OpsOperationEventDao{M: d.M.And(where, args...)}
  269. }
  270. // Or adds "OR" condition to the where statement.
  271. func (d *OpsOperationEventDao) Or(where interface{}, args ...interface{}) *OpsOperationEventDao {
  272. return &OpsOperationEventDao{M: d.M.Or(where, args...)}
  273. }
  274. // Group sets the "GROUP BY" statement for the model.
  275. func (d *OpsOperationEventDao) Group(groupBy string) *OpsOperationEventDao {
  276. return &OpsOperationEventDao{M: d.M.Group(groupBy)}
  277. }
  278. // Order sets the "ORDER BY" statement for the model.
  279. func (d *OpsOperationEventDao) Order(orderBy ...string) *OpsOperationEventDao {
  280. return &OpsOperationEventDao{M: d.M.Order(orderBy...)}
  281. }
  282. // Limit sets the "LIMIT" statement for the model.
  283. // The parameter <limit> can be either one or two number, if passed two number is passed,
  284. // it then sets "LIMIT limit[0],limit[1]" statement for the model, or else it sets "LIMIT limit[0]"
  285. // statement.
  286. func (d *OpsOperationEventDao) Limit(limit ...int) *OpsOperationEventDao {
  287. return &OpsOperationEventDao{M: d.M.Limit(limit...)}
  288. }
  289. // Offset sets the "OFFSET" statement for the model.
  290. // It only makes sense for some databases like SQLServer, PostgreSQL, etc.
  291. func (d *OpsOperationEventDao) Offset(offset int) *OpsOperationEventDao {
  292. return &OpsOperationEventDao{M: d.M.Offset(offset)}
  293. }
  294. // Page sets the paging number for the model.
  295. // The parameter <page> is started from 1 for paging.
  296. // Note that, it differs that the Limit function start from 0 for "LIMIT" statement.
  297. func (d *OpsOperationEventDao) Page(page, limit int) *OpsOperationEventDao {
  298. return &OpsOperationEventDao{M: d.M.Page(page, limit)}
  299. }
  300. // Batch sets the batch operation number for the model.
  301. func (d *OpsOperationEventDao) Batch(batch int) *OpsOperationEventDao {
  302. return &OpsOperationEventDao{M: d.M.Batch(batch)}
  303. }
  304. // Cache sets the cache feature for the model. It caches the result of the sql, which means
  305. // if there's another same sql request, it just reads and returns the result from cache, it
  306. // but not committed and executed into the database.
  307. //
  308. // If the parameter <duration> < 0, which means it clear the cache with given <name>.
  309. // If the parameter <duration> = 0, which means it never expires.
  310. // If the parameter <duration> > 0, which means it expires after <duration>.
  311. //
  312. // The optional parameter <name> is used to bind a name to the cache, which means you can later
  313. // control the cache like changing the <duration> or clearing the cache with specified <name>.
  314. //
  315. // Note that, the cache feature is disabled if the model is operating on a transaction.
  316. func (d *OpsOperationEventDao) Cache(duration time.Duration, name ...string) *OpsOperationEventDao {
  317. return &OpsOperationEventDao{M: d.M.Cache(duration, name...)}
  318. }
  319. // Data sets the operation data for the model.
  320. // The parameter <data> can be type of string/map/gmap/slice/struct/*struct, etc.
  321. // Eg:
  322. // Data("uid=10000")
  323. // Data("uid", 10000)
  324. // Data(g.Map{"uid": 10000, "name":"john"})
  325. // Data(g.Slice{g.Map{"uid": 10000, "name":"john"}, g.Map{"uid": 20000, "name":"smith"})
  326. func (d *OpsOperationEventDao) Data(data ...interface{}) *OpsOperationEventDao {
  327. return &OpsOperationEventDao{M: d.M.Data(data...)}
  328. }
  329. // All does "SELECT FROM ..." statement for the model.
  330. // It retrieves the records from table and returns the result as []*model.OpsOperationEvent.
  331. // It returns nil if there's no record retrieved with the given conditions from table.
  332. //
  333. // The optional parameter <where> is the same as the parameter of M.Where function,
  334. // see M.Where.
  335. func (d *OpsOperationEventDao) All(where ...interface{}) ([]*opsdev.OpsOperationEvent, error) {
  336. all, err := d.M.All(where...)
  337. if err != nil {
  338. return nil, err
  339. }
  340. var entities []*opsdev.OpsOperationEvent
  341. if err = all.Structs(&entities); err != nil && err != sql.ErrNoRows {
  342. return nil, err
  343. }
  344. return entities, nil
  345. }
  346. // One retrieves one record from table and returns the result as *model.OpsOperationEvent.
  347. // It returns nil if there's no record retrieved with the given conditions from table.
  348. //
  349. // The optional parameter <where> is the same as the parameter of M.Where function,
  350. // see M.Where.
  351. func (d *OpsOperationEventDao) One(where ...interface{}) (*opsdev.OpsOperationEvent, error) {
  352. one, err := d.M.One(where...)
  353. if err != nil {
  354. return nil, err
  355. }
  356. var entity *opsdev.OpsOperationEvent
  357. if err = one.Struct(&entity); err != nil && err != sql.ErrNoRows {
  358. return nil, err
  359. }
  360. return entity, nil
  361. }
  362. // FindOne retrieves and returns a single Record by M.WherePri and M.One.
  363. // Also see M.WherePri and M.One.
  364. func (d *OpsOperationEventDao) FindOne(where ...interface{}) (*opsdev.OpsOperationEvent, error) {
  365. one, err := d.M.FindOne(where...)
  366. if err != nil {
  367. return nil, err
  368. }
  369. var entity *opsdev.OpsOperationEvent
  370. if err = one.Struct(&entity); err != nil && err != sql.ErrNoRows {
  371. return nil, err
  372. }
  373. return entity, nil
  374. }
  375. // FindAll retrieves and returns Result by by M.WherePri and M.All.
  376. // Also see M.WherePri and M.All.
  377. func (d *OpsOperationEventDao) FindAll(where ...interface{}) ([]*opsdev.OpsOperationEvent, error) {
  378. all, err := d.M.FindAll(where...)
  379. if err != nil {
  380. return nil, err
  381. }
  382. var entities []*opsdev.OpsOperationEvent
  383. if err = all.Structs(&entities); err != nil && err != sql.ErrNoRows {
  384. return nil, err
  385. }
  386. return entities, nil
  387. }
  388. // Struct retrieves one record from table and converts it into given struct.
  389. // The parameter <pointer> should be type of *struct/**struct. If type **struct is given,
  390. // it can create the struct internally during converting.
  391. //
  392. // The optional parameter <where> is the same as the parameter of Model.Where function,
  393. // see Model.Where.
  394. //
  395. // Note that it returns sql.ErrNoRows if there's no record retrieved with the given conditions
  396. // from table and <pointer> is not nil.
  397. //
  398. // Eg:
  399. // user := new(User)
  400. // err := dao.User.Where("id", 1).Struct(user)
  401. //
  402. // user := (*User)(nil)
  403. // err := dao.User.Where("id", 1).Struct(&user)
  404. func (d *OpsOperationEventDao) Struct(pointer interface{}, where ...interface{}) error {
  405. return d.M.Struct(pointer, where...)
  406. }
  407. // Structs retrieves records from table and converts them into given struct slice.
  408. // The parameter <pointer> should be type of *[]struct/*[]*struct. It can create and fill the struct
  409. // slice internally during converting.
  410. //
  411. // The optional parameter <where> is the same as the parameter of Model.Where function,
  412. // see Model.Where.
  413. //
  414. // Note that it returns sql.ErrNoRows if there's no record retrieved with the given conditions
  415. // from table and <pointer> is not empty.
  416. //
  417. // Eg:
  418. // users := ([]User)(nil)
  419. // err := dao.User.Structs(&users)
  420. //
  421. // users := ([]*User)(nil)
  422. // err := dao.User.Structs(&users)
  423. func (d *OpsOperationEventDao) Structs(pointer interface{}, where ...interface{}) error {
  424. return d.M.Structs(pointer, where...)
  425. }
  426. // Scan automatically calls Struct or Structs function according to the type of parameter <pointer>.
  427. // It calls function Struct if <pointer> is type of *struct/**struct.
  428. // It calls function Structs if <pointer> is type of *[]struct/*[]*struct.
  429. //
  430. // The optional parameter <where> is the same as the parameter of Model.Where function,
  431. // see Model.Where.
  432. //
  433. // Note that it returns sql.ErrNoRows if there's no record retrieved and given pointer is not empty or nil.
  434. //
  435. // Eg:
  436. // user := new(User)
  437. // err := dao.User.Where("id", 1).Scan(user)
  438. //
  439. // user := (*User)(nil)
  440. // err := dao.User.Where("id", 1).Scan(&user)
  441. //
  442. // users := ([]User)(nil)
  443. // err := dao.User.Scan(&users)
  444. //
  445. // users := ([]*User)(nil)
  446. // err := dao.User.Scan(&users)
  447. func (d *OpsOperationEventDao) Scan(pointer interface{}, where ...interface{}) error {
  448. return d.M.Scan(pointer, where...)
  449. }
  450. // Chunk iterates the table with given size and callback function.
  451. func (d *OpsOperationEventDao) Chunk(limit int, callback func(entities []*opsdev.OpsOperationEvent, err error) bool) {
  452. d.M.Chunk(limit, func(result gdb.Result, err error) bool {
  453. var entities []*opsdev.OpsOperationEvent
  454. err = result.Structs(&entities)
  455. if err == sql.ErrNoRows {
  456. return false
  457. }
  458. return callback(entities, err)
  459. })
  460. }
  461. // LockUpdate sets the lock for update for current operation.
  462. func (d *OpsOperationEventDao) LockUpdate() *OpsOperationEventDao {
  463. return &OpsOperationEventDao{M: d.M.LockUpdate()}
  464. }
  465. // LockShared sets the lock in share mode for current operation.
  466. func (d *OpsOperationEventDao) LockShared() *OpsOperationEventDao {
  467. return &OpsOperationEventDao{M: d.M.LockShared()}
  468. }
  469. // Unscoped enables/disables the soft deleting feature.
  470. func (d *OpsOperationEventDao) Unscoped() *OpsOperationEventDao {
  471. return &OpsOperationEventDao{M: d.M.Unscoped()}
  472. }