去向地详细
This commit is contained in:
@@ -1,15 +1,22 @@
|
||||
package com.srs.survey.domain;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.srs.common.annotation.Excel;
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.srs.common.enums.DesensitizedType;
|
||||
import com.srs.common.core.domain.BaseEntity;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.*;
|
||||
import com.srs.common.core.domain.BaseEntity;
|
||||
import com.srs.common.annotation.Sensitive;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
|
||||
|
||||
@@ -173,6 +180,61 @@ private static final long serialVersionUID=1L;
|
||||
@Excel(name = "宿舍号")
|
||||
@TableField(exist = false)
|
||||
public String roomNo;
|
||||
/**
|
||||
* 家长是否知晓
|
||||
*/
|
||||
@ApiModelProperty("家长是否知晓")
|
||||
@TableField("know")
|
||||
@Excel(name = "家长是否知晓")
|
||||
public String know;
|
||||
|
||||
/**
|
||||
* 未返校原因分类
|
||||
*/
|
||||
@ApiModelProperty("未返校原因分类")
|
||||
@TableField("absent_school_type")
|
||||
@Excel(name = "未返校原因分类")
|
||||
public String absentSchoolType;
|
||||
|
||||
/**
|
||||
* 未返校详细原因
|
||||
*/
|
||||
@ApiModelProperty("未返校详细原因")
|
||||
@TableField("absent_school_remark")
|
||||
@Excel(name = "未返校详细原因")
|
||||
public String absentSchoolRemark;
|
||||
|
||||
/**
|
||||
* 到校定位
|
||||
*/
|
||||
@ApiModelProperty("到校定位")
|
||||
@TableField("attend_school_gps")
|
||||
@Excel(name = "到校定位")
|
||||
public String attendSchoolGps;
|
||||
|
||||
/**
|
||||
* 到校时间
|
||||
*/
|
||||
@ApiModelProperty("到校时间")
|
||||
@TableField("attend_school_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "到校时间" , width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
public Date attendSchoolTime;
|
||||
|
||||
/**
|
||||
* 状态:0.保存,1.保存,2.已审核
|
||||
*/
|
||||
@ApiModelProperty("状态:0.保存,1.待审核,2.已审核")
|
||||
@TableField("status")
|
||||
@Excel(name = "状态:0.保存,1.待审核,2.已审核")
|
||||
public String status;
|
||||
|
||||
|
||||
@ApiModelProperty("预计离校时间")
|
||||
@TableField("will_leave_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "预计离校时间" , width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
public Date willLeaveTime;
|
||||
|
||||
@ApiModelProperty("是否离校")
|
||||
@TableField("is_leave")
|
||||
@@ -194,19 +256,6 @@ private static final long serialVersionUID=1L;
|
||||
@Excel(name = "家长是否知晓(离校、留校)")
|
||||
public String famKnow;
|
||||
|
||||
|
||||
@ApiModelProperty("预计离校时间")
|
||||
@TableField("will_leave_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "预计离校时间" , width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
public Date willLeaveTime;
|
||||
|
||||
@ApiModelProperty("去向地")
|
||||
@TableField("will_addr")
|
||||
@Excel(name = "去向地")
|
||||
public String willAddr;
|
||||
|
||||
|
||||
@ApiModelProperty("计划返校时间")
|
||||
@TableField("scheduled_return_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@@ -239,6 +288,15 @@ private static final long serialVersionUID=1L;
|
||||
// @Excel(name = "到家定位")
|
||||
public String homeGps;
|
||||
|
||||
@ApiModelProperty("去向地")
|
||||
@TableField("will_addr")
|
||||
@Excel(name = "去向地")
|
||||
public String willAddr;
|
||||
|
||||
@ApiModelProperty("去向地详细地址")
|
||||
@TableField("will_detail_addr")
|
||||
@Excel(name = "去向地详细地址")
|
||||
public String willDetailAddr;
|
||||
|
||||
@TableField("home_gps_addr")
|
||||
public String homeGpsAddr;
|
||||
@@ -259,40 +317,6 @@ private static final long serialVersionUID=1L;
|
||||
@Excel(name = "是否到校")
|
||||
public String reachSchoolStatus;
|
||||
|
||||
|
||||
|
||||
|
||||
@ApiModelProperty("到校定位")
|
||||
@TableField("attend_school_gps")
|
||||
// @Excel(name = "到校定位")
|
||||
public String attendSchoolGps;
|
||||
|
||||
/**
|
||||
* 到校时间
|
||||
*/
|
||||
@ApiModelProperty("到校时间")
|
||||
@TableField("attend_school_time")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@Excel(name = "到校时间" , width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||
public Date attendSchoolTime;
|
||||
|
||||
|
||||
/**
|
||||
* 未返校原因分类
|
||||
*/
|
||||
@ApiModelProperty("未返校原因分类")
|
||||
@TableField("absent_school_type")
|
||||
@Excel(name = "未返校原因分类")
|
||||
public String absentSchoolType;
|
||||
|
||||
/**
|
||||
* 未返校详细原因
|
||||
*/
|
||||
@ApiModelProperty("未返校详细原因")
|
||||
@TableField("absent_school_remark")
|
||||
@Excel(name = "未返校详细原因")
|
||||
public String absentSchoolRemark;
|
||||
|
||||
/**
|
||||
* 家长姓名
|
||||
*/
|
||||
@@ -309,24 +333,6 @@ private static final long serialVersionUID=1L;
|
||||
@Excel(name = "家长电话(返校)")
|
||||
public String parentPhone;
|
||||
|
||||
/**
|
||||
* 家长是否知晓
|
||||
*/
|
||||
@ApiModelProperty("家长是否知晓(返校)")
|
||||
@TableField("know")
|
||||
@Excel(name = "家长是否知晓(返校)")
|
||||
public String know;
|
||||
|
||||
|
||||
/**
|
||||
* 状态:0.保存,1.保存,2.已审核
|
||||
*/
|
||||
@ApiModelProperty("返校审核状态")
|
||||
@TableField("status")
|
||||
@Excel(name = "返校审核状态",dictType = "sur_status")
|
||||
public String status;
|
||||
|
||||
|
||||
|
||||
@TableField("stu_fdy_name")
|
||||
@Excel(name = "学生辅导员姓名")
|
||||
|
||||
Reference in New Issue
Block a user