You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
627 B
30 lines
627 B
2 weeks ago
|
package cn.teammodel.model.dto.Wechat;
|
||
|
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 职业测试报告通知 请求参数
|
||
|
*/
|
||
|
@Data
|
||
|
public class VocationalReqDto extends BaseInfoReqDto {
|
||
|
|
||
|
@ApiModelProperty("微信openId")
|
||
|
public String openId;
|
||
|
|
||
|
@ApiModelProperty("跳转页面")
|
||
|
public String page = "pages/parent/home";
|
||
|
|
||
|
@ApiModelProperty("用户")
|
||
|
public String name;
|
||
|
|
||
|
@ApiModelProperty("时间")
|
||
|
public String time2;
|
||
|
|
||
|
@ApiModelProperty("测评名称")
|
||
|
public String thing3;
|
||
|
|
||
|
@ApiModelProperty("测评的分数/出成绩")
|
||
|
public int number4;
|
||
|
}
|