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.
54 lines
927 B
Java
54 lines
927 B
Java
package com.glxp.mipsdl.res.scwpxyy;
|
|
|
|
import com.glxp.mipsdl.entity.scpwxyy.A0006detail;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
@Builder
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class A006headRespone {
|
|
private String codefk;
|
|
|
|
private String billno;
|
|
|
|
private String billflag;
|
|
|
|
private Date billdate;
|
|
|
|
private String billtype;
|
|
|
|
private String consigneecode;
|
|
|
|
private String consigneename;
|
|
|
|
private String consignorname;
|
|
|
|
private String consignorcode;
|
|
|
|
private String inouttype;
|
|
|
|
private String createuser;
|
|
|
|
private String reviewuser;
|
|
|
|
private String address;
|
|
|
|
private String linkman;
|
|
|
|
private String linktel;
|
|
|
|
private String invcode;
|
|
|
|
private String invname;
|
|
|
|
private String remark;
|
|
|
|
private List<A0006detail> detailList;
|
|
} |