Helius
2021-06-24 c13cc7349ca2a5ffa8eb1d41c583ceef2647abdb
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
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;
}