Helius
2021-06-28 cedf9aab0ee975b04c52c0a75749e1eba852db2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.xzx.gc.entity;
 
import com.xzx.gc.common.entity.BaseEntity;
import lombok.Data;
 
import javax.persistence.Table;
import java.math.BigDecimal;
 
@Data
@Table(name = "xzx_jhy_order_items")
public class JhyOrderItems extends BaseEntity {
 
    private Long orderId;
 
    private String title;
 
    private BigDecimal price;
 
    private String picture;
 
    private String remark;
 
    private BigDecimal weight;
 
    private String score;
 
    private Long itemType;
}