| | |
| | | package com.ruoyi.sales.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | |
| | | @TableField(exist = false) |
| | | private String shippingCarNumber; |
| | | |
| | | @ApiModelProperty("快递公司") |
| | | @TableField(exist = false) |
| | | private String expressCompany; |
| | | |
| | | @ApiModelProperty("快递单号") |
| | | @TableField(exist = false) |
| | | private String expressNumber; |
| | | |
| | | /** |
| | | * 发货日期 |
| | | */ |
| | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "发货状态") |
| | | private String shippingStatus; |
| | | private String shippingStatus = "待发货"; |
| | | /** |
| | | * 产品状态 |
| | | */ |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private Integer hasSufficientStock; |
| | | |
| | | // 退货数量 |
| | | @TableField(exist = false) |
| | | private BigDecimal returnQuality; |
| | | |
| | | // 可用数量 quantity - returnQuality |
| | | @TableField(exist = false) |
| | | private BigDecimal availableQuality; |
| | | @ApiModelProperty(value = "创建用户") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | } |