jyy
2021-01-16 c0dc765ad93846078718bb15976905c34db7584c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.matrix.system.shopXcx.api.dto;
 
import com.matrix.core.pojo.PaginationDto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author jyy
 * @date 2020-12-23
 **/
@ApiModel(value = "ErpServiceCommentDto", description = "服务评价")
public class ErpServiceCommentDto   {
 
 
    @NotNull(message = "评论内容不能为空")
    @ApiModelProperty(value = "评论内容")
    private String comment;
 
    @NotNull(message = "服务单id不能为空")
    @ApiModelProperty(value = "服务单id")
    private Long id;
 
 
    public String getComment() {
        return comment;
    }
 
    public void setComment(String comment) {
        this.comment = comment;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
}