You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
272 B
18 lines
272 B
3 years ago
|
package com.qs.cost.common.dto;
|
||
|
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Getter;
|
||
|
import lombok.Setter;
|
||
|
|
||
|
/**
|
||
|
* @author YenHex
|
||
|
* @since 2022/2/25
|
||
|
*/
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@AllArgsConstructor
|
||
|
public class BeanParams{
|
||
|
private String json;
|
||
|
private String keyId;
|
||
|
}
|