fix
Helius
2021-08-05 8bbb027dc36b3f3c7f2d505fc75180261fb4d640
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;
 
/**
 * @author wzy
 * @date 2021-07-14
 **/
@Data
@Table(name = "xzx_user_head_details")
public class UserHeadDetails extends BaseEntity {
 
    private String orderNo;
 
    private BigDecimal score;
 
    private BigDecimal amount;
 
    private String headUserId;
 
    private String userId;
 
    private String remark;
}