微信小程序查询案例

This commit is contained in:
xiezhijun
2021-03-18 16:11:54 +08:00
parent 75d11bb9e3
commit 4247860f69
3 changed files with 94 additions and 4 deletions

View File

@ -0,0 +1,19 @@
package com.stdiet.custom.dto.response;
import lombok.Data;
import java.util.List;
@Data
public class CustomerCaseResponse {
private Long id;
private String name;
private String keyword;
private String remark;
private List<String> fileList;
}