liyong
2026-01-29 e6eb127b2ef4f297b093dcd9a5b47be457f67043
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.ruoyi.business.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.time.LocalDate;
 
@Data
public class CarbonCubes {
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    //商品
    private String coal;
 
    private Long coalId;
 
    // 订单类型
    private String orderType;
 
    // 发货名称or收货名称
    private String supplierName;
 
    private String customerName;
 
    // 数量
    private BigDecimal number;
 
    //含税单价
    private BigDecimal priceIncludingTax;
 
    //发货/收货磅单编号
    private String billNumber;
 
    private String createUser;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDate createTime;
 
 
}