New file |
| | |
| | | package com.example.erp.entity.sd; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | public class DeliveryOtherMoney { |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | private String deliveryId; |
| | | @TableField(value = "`column`") |
| | | private String column; |
| | | private Double quantity; |
| | | private Double price; |
| | | private Double money; |
| | | @TableField(select = false,exist= false) |
| | | private String alias; |
| | | private LocalDateTime createTime; |
| | | } |