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
634 B
30 lines
634 B
2 weeks ago
|
package cn.teammodel.model.dto.Wechat;
|
||
|
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 评价完成通知 请求参数
|
||
|
*/
|
||
|
@Data
|
||
|
public class AppraiseReqDto extends BaseInfoReqDto {
|
||
|
|
||
|
@ApiModelProperty("微信openId")
|
||
|
public String openId;
|
||
|
|
||
|
@ApiModelProperty("跳转页面")
|
||
|
public String page = "pages/parent/home";
|
||
|
|
||
|
@ApiModelProperty("被评价用户")
|
||
|
public String name;
|
||
|
|
||
|
@ApiModelProperty("评价内容")
|
||
|
public String content;
|
||
|
|
||
|
@ApiModelProperty("评价时间")
|
||
|
public String appraiseTime;
|
||
|
|
||
|
@ApiModelProperty("评价人")
|
||
|
public String appraiseUser;
|
||
|
}
|