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.
31 lines
681 B
Java
31 lines
681 B
Java
package com.glxp.api.res.basic;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
public class BasicUnitMaintainResponse {
|
|
|
|
private Integer id;
|
|
private String thirdId;
|
|
private String erpId;
|
|
private String name;
|
|
private String spell;
|
|
private String addr;
|
|
private String status;
|
|
private String type;
|
|
private String creditNo;
|
|
private String contact;
|
|
private String mobile;
|
|
private String thirdName;
|
|
private String unitId;
|
|
private Integer corpType;
|
|
private Integer outType;
|
|
private String createUser;
|
|
private Date createTime;
|
|
private String updateUser;
|
|
private Date updateTime;
|
|
private String remark;
|
|
}
|