1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.ruoyi.production.dto;
|
| import com.ruoyi.production.pojo.ProductInspectionRecord;
| import lombok.Data;
|
| /**
| * @author yuan
| * @date 2026-03-16 16:18
| * @description
| */
| @Data
| public class ProductInspectionRecordDto extends ProductInspectionRecord {
| }
|
|