@BeforeInsert() @BeforeUpdate() beforeInsert() { this.foodCost ? this.foodCost = MaterialType.sm4.encrypt(this.foodCost) : undefined }
时间: 2023-03-31 21:04:30 浏览: 66
SM2_SM3_SM4Encrypt.zip
这是一段 TypeScript 代码,使用了装饰器 @BeforeInsert 和 @BeforeUpdate 来在插入和更新数据前执行 beforeInsert() 方法,该方法对 this.foodCost 属性进行了加密处理。
阅读全文