15 lines
326 B
Java
15 lines
326 B
Java
package com.yj.earth.dto.matter;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class UpdateMatterDto {
|
|
@Schema(description = "主键")
|
|
private String id;
|
|
@Schema(description = "名称")
|
|
private String name;
|
|
@Schema(description = "数量")
|
|
private Integer num;
|
|
}
|