| 1234567891011121314151617181920212223242526 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: HelpQuestionClassification
- *创建者: JavaZou
- *创建时间:2022/12/7 10:11
- */
- @Getter
- @Setter
- public class HelpQuestionClassification extends BaseEntity{
- private Long goodsId;
- private String name;
- private String logo;
- private Integer sort;
- private Boolean status;
- private Boolean deleted;
- }
|