| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.cyksj.model.entity;
- import com.fasterxml.jackson.annotation.JsonInclude;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: goods_courseware_file
- *创建者: JavaZou
- *创建时间:2023/8/24 10:51
- */
- @Getter
- @Setter
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class GoodsCoursewareFile extends BaseEntity{
- private Long goodsId;
- /**
- * 邮箱标题
- */
- private String subject;
- private String fileName;
- private String path;
- private String img;
- private String link;
- private String code;
- private Boolean status;
- }
|