|
|
|
@ -4,8 +4,8 @@ import com.ibeetl.admin.core.annotation.Dict;
|
|
|
|
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
|
|
|
|
import com.ibeetl.admin.core.util.ValidateConfig;
|
|
|
|
|
import com.ibeetl.jlw.enums.BusinessCourseInfoEnum;
|
|
|
|
|
import lombok.*;
|
|
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.beetl.sql.annotation.entity.AssignID;
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
@ -16,10 +16,6 @@ import java.math.BigDecimal;
|
|
|
|
|
* gen by Spring Boot2 Admin 2022-11-24
|
|
|
|
|
*/
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@Accessors(chain = true)
|
|
|
|
|
@EqualsAndHashCode(callSuper=false)
|
|
|
|
|
public class GeneralResourcesQuestionSnapshot extends BaseEntity{
|
|
|
|
|
|
|
|
|
@ -101,12 +97,4 @@ public class GeneralResourcesQuestionSnapshot extends BaseEntity{
|
|
|
|
|
public void hideAnswer() {
|
|
|
|
|
setQuestionAnswer(null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getGeneralResourcesQuestionSnapshotId() {
|
|
|
|
|
return generalResourcesQuestionSnapshotId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setGeneralResourcesQuestionSnapshotId(Long generalResourcesQuestionSnapshotId) {
|
|
|
|
|
this.generalResourcesQuestionSnapshotId = generalResourcesQuestionSnapshotId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|