|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
import com.qmth.distributed.print.business.base.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
@@ -44,6 +45,22 @@ public class ExamStudent extends BaseEntity implements Serializable {
|
|
|
@TableField("paper_type")
|
|
|
private String paperType;
|
|
|
|
|
|
+ @ApiModelProperty(value = "附件id")
|
|
|
+ @TableField(value = "attachment_ids")
|
|
|
+ private String attachmentIds;
|
|
|
+
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAttachmentIds() {
|
|
|
+ return attachmentIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAttachmentIds(String attachmentIds) {
|
|
|
+ this.attachmentIds = attachmentIds;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getSchoolId() {
|
|
|
return schoolId;
|
|
|
}
|