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.
20 lines
378 B
Java
20 lines
378 B
Java
2 years ago
|
package com.glxp.api.entity.inv;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class InnerOrderEntity {
|
||
|
|
||
|
private Integer id;
|
||
|
private String recordKey;
|
||
|
private Date createTime;
|
||
|
private Integer genStatus;
|
||
|
private Integer printStatus;
|
||
|
private Date updateTime;
|
||
|
private String remark;
|
||
|
private String createUser;
|
||
|
private int status;
|
||
|
}
|