You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
276 B
Java
18 lines
276 B
Java
8 months ago
|
package com.glxp.api.req.thrsys;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class AuthCompanyRequest {
|
||
|
/**
|
||
|
* 往来单位名称
|
||
|
*/
|
||
|
private String name;
|
||
|
private String appId;
|
||
|
private String appSecret;
|
||
|
|
||
|
private String refEntId;
|
||
|
private String code;
|
||
|
|
||
|
}
|