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.
24 lines
374 B
Java
24 lines
374 B
Java
2 years ago
|
package com.glxp.api.res.basic;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class BasicErpUnitsResponse {
|
||
|
|
||
|
private String id;
|
||
|
private String name;
|
||
|
private String spell;
|
||
|
private String addr;
|
||
|
private String creditNo;
|
||
|
private String contact;
|
||
|
private String mobile;
|
||
|
private Boolean checked;
|
||
|
private String unitId; //必填 往来单位ID
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|