15 lines
302 B
Java
15 lines
302 B
Java
package com.zioinfo.signage.domain;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class TenantVo {
|
|
private Long id;
|
|
private String tenantCode;
|
|
private String tenantName;
|
|
private String description;
|
|
private boolean active;
|
|
private LocalDateTime createdAt;
|
|
}
|