19 lines
343 B
Java
19 lines
343 B
Java
package com.cim.idm.model;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @author 10486880
|
|
* @version 1.0
|
|
* @description LabelParameterDto
|
|
* @date 2024/4/19 10:45
|
|
*/
|
|
@Data
|
|
public class LabelParameterDto {
|
|
private String parameterName;
|
|
private String description;
|
|
|
|
// commit action type. Create | Modify | Delete
|
|
private String actionType;
|
|
}
|