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.
28 lines
626 B
Java
28 lines
626 B
Java
2 years ago
|
package com.glxp.api.entity.basic;
|
||
|
|
||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.math.BigDecimal;
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class UdiRlSupEntity {
|
||
|
|
||
|
private Integer id;
|
||
|
private String customerId;
|
||
|
private String productId;
|
||
|
private String enterpriseId;
|
||
|
private String registrationId;
|
||
|
private String auditStatus;
|
||
|
private String productUuid;
|
||
|
private String udiRlIdFk;
|
||
|
private String unitFk;
|
||
|
private BigDecimal price;
|
||
|
|
||
|
private Date createTime;
|
||
|
private Date updateTime;
|
||
|
private String createUser;
|
||
|
private String updateUser;
|
||
|
}
|