package com.oying.modules.pc.category.view;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
@Data
|
public class PlatformCategoryAdminView implements Serializable {
|
|
private Long categoryId;
|
|
private String name;
|
|
private Integer sortWeight;
|
|
private String iconUrl;
|
|
private Integer active;
|
|
private String createBy;
|
|
private LocalDateTime createTime;
|
|
private String updateBy;
|
|
private LocalDateTime updateTime;
|
|
}
|