forked from rongchao/epmet-cloud-rizhao
3 changed files with 37 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.AllArgsConstructor; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/10/11 13:41 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
@NoArgsConstructor |
||||
|
@AllArgsConstructor |
||||
|
public class OrgInfoResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 7478605833438304330L; |
||||
|
|
||||
|
private String id; |
||||
|
private String name; |
||||
|
} |
Loading…
Reference in new issue