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