You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
423 B
22 lines
423 B
package com.jianshui.invoiceall.domain;
|
|
|
|
import com.jianshui.common.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class AsyncLoginResultEntity {
|
|
/** 响应码 */
|
|
private String code;
|
|
|
|
/** 响应数据 */
|
|
private String data;
|
|
|
|
/** 返回信息 */
|
|
private String msg;
|
|
|
|
/** 响应结果 true成功 false失败 */
|
|
private Integer success;
|
|
|
|
/** 流水号 */
|
|
private String trace;
|
|
}
|
|
|