a9bc31a6创建于 2025年12月7日历史提交
import { ApiProperty } from "@nestjs/swagger";

export class BatchRemoveI18Records {
  @ApiProperty({
    description: '想要删除的国际化字段ID数组',
    type: [Number]
  })
  ids: number[];
}