大屏
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
package cn.iocoder.yudao.module.system.api.face;
|
||||
|
||||
import cn.iocoder.yudao.module.system.api.face.dto.UserJsonDto;
|
||||
|
||||
public interface FaceApi {
|
||||
|
||||
Long addFace(UserJsonDto userJson);
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.iocoder.yudao.module.system.api.face.dto;
|
||||
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.ToString;
|
||||
|
||||
@Data
|
||||
@ToString
|
||||
public class UserJsonDto {
|
||||
|
||||
private String userNickname;
|
||||
private String phoneNumber;
|
||||
private String url;
|
||||
private Long userId;
|
||||
private Long carteenId;
|
||||
}
|
Reference in New Issue
Block a user