|
|
@ -1,5 +1,7 @@ |
|
|
|
package com.epmet.entity.evaluationindex.screen; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.FieldFill; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
@ -26,4 +28,10 @@ public class ScreenDifficultyImgDataEntity extends BaseEpmetEntity { |
|
|
|
private String eventImgUrl; |
|
|
|
|
|
|
|
private Integer sort; |
|
|
|
|
|
|
|
/** |
|
|
|
* 客户ID |
|
|
|
*/ |
|
|
|
@TableField(fill = FieldFill.INSERT) |
|
|
|
private String customerId; |
|
|
|
} |
|
|
|