| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | |
| | | @Data |
| | | @TableName("`order`") |
| | | public class Order { |
| | | @TableId(type = IdType.AUTO) |
| | | |
| | | private Long id; |
| | | private String orderId; |
| | | private String project; |
| | | |
| | | private String customerId; |
| | | private String customerName; |
| | | private String orderType; |
| | | private String orderClassify; |
| | |
| | | private Double otherMoney; |
| | | private String otherMoneyRemarks; |
| | | private String processingNote; |
| | | private String otherRemaks; |
| | | private String otherRemarks; |
| | | private Double area; |
| | | private Long quantity; |
| | | private String verifierId; |
| | | private String verifier; |
| | | private String createrId; |
| | | private String creater; |
| | | private String creatorId; |
| | | private String creator; |
| | | private Integer createOrder; |
| | | private Integer processReview; |
| | | private Integer orderReview; |