puzhibing
2023-12-14 d20dbd5d97b3f418533d5d23fd337cdec9f95939
1
2
3
4
5
6
7
8
9
10
11
12
package com.dsh.course.model;
 
import lombok.Data;
 
/**
 * 通过用户姓名和电话进行模糊查询DTO
 */
@Data
public class AppUserByNameAndPhoneDTO {
    private String userName;
    private String phone;
}