| 1 | import { ApiHideProperty } from '@nestjs/swagger'; |
| 2 | import { Exclude } from 'class-transformer'; |
| 3 | |
| 4 | export class OperatorDto { |
| 5 | @ApiHideProperty() |
| 6 | @Exclude() |
| 7 | createBy: number; |
| 8 | |
| 9 | @ApiHideProperty() |
| 10 | @Exclude() |
| 11 | updateBy: number; |
| 12 | } |
| 13 |