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.
21 lines
368 B
21 lines
368 B
package com.epmet.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @Author zxc
|
|
* @DateTime 2022/10/20 14:21
|
|
* @DESC
|
|
*/
|
|
@Data
|
|
public class ComplementLogOperationDTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = 7563210356670229204L;
|
|
|
|
private String staffId;
|
|
|
|
private String orgId;
|
|
private String orgIdPath;
|
|
}
|
|
|