1234567891011121314151617181920212223 |
- package com.gzlh.config.dto;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- /**
- * 人脸机子
- */
- @Data
- @AllArgsConstructor
- public class FaceDTO {
- private String channelCode;
- private String ip;
- private short port;
- @JsonIgnore
- private String uname;
- @JsonIgnore
- private String pwd;
- private Integer userId;
- private boolean online;
- }
|