|
|
@ -1,8 +1,9 @@ |
|
|
|
package co.yixiang.utils.location; |
|
|
|
package co.yixiang.utils; |
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill; |
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
import javax.validation.constraints.NotNull; |
|
|
@ -19,6 +20,7 @@ import java.util.List; |
|
|
|
* @author sj |
|
|
|
* @author sj |
|
|
|
* @since 2022-09-26 |
|
|
|
* @since 2022-09-26 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
@Data |
|
|
|
public class EvaluationDTO implements Serializable { |
|
|
|
public class EvaluationDTO implements Serializable { |
|
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
@ -42,7 +44,6 @@ public class EvaluationDTO implements Serializable { |
|
|
|
private String videoInput; |
|
|
|
private String videoInput; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 关联商品信息 */ |
|
|
|
/** 关联商品信息 */ |
|
|
|
@NotNull |
|
|
|
@NotNull |
|
|
|
private String product; |
|
|
|
private String product; |
|
|
@ -75,22 +76,22 @@ public class EvaluationDTO implements Serializable { |
|
|
|
private String accessibilitySynopsis; |
|
|
|
private String accessibilitySynopsis; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 添加时间 */ |
|
|
|
// /** 添加时间 */
|
|
|
|
@TableField(fill= FieldFill.INSERT) |
|
|
|
// @TableField(fill= FieldFill.INSERT)
|
|
|
|
private Timestamp createTime; |
|
|
|
// private Timestamp createTime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 更新时间 */ |
|
|
|
|
|
|
|
@TableField(fill= FieldFill.INSERT_UPDATE) |
|
|
|
|
|
|
|
private Timestamp updateTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 是否删除 */ |
|
|
|
// /** 更新时间 */
|
|
|
|
private Integer isDel; |
|
|
|
// @TableField(fill= FieldFill.INSERT_UPDATE)
|
|
|
|
|
|
|
|
// private Timestamp updateTime;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 是否展示 */ |
|
|
|
// /** 是否删除 */
|
|
|
|
private Integer isShow; |
|
|
|
// private Integer isDel;
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// /** 是否展示 */
|
|
|
|
|
|
|
|
// private Integer isShow;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 排序 */ |
|
|
|
/** 排序 */ |
|
|
@ -98,7 +99,7 @@ public class EvaluationDTO implements Serializable { |
|
|
|
private Integer sort; |
|
|
|
private Integer sort; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private Long tenantId; |
|
|
|
// private Long tenantId;
|
|
|
|
|
|
|
|
|
|
|
|
private List<EvaluationDTO> children = new ArrayList<>(); |
|
|
|
// private List<EvaluationDTO> children = new ArrayList<>();
|
|
|
|
} |
|
|
|
} |