| | |
| | | @TableName("shipping_info") |
| | | public class ShippingInfo { |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "销售台账id") |
| | | private Long salesLedgerId; |
| | | @ApiModelProperty(value = "销售报价产品表id") |
| | | private Long salesLedgerProductId; |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "销售合同号") |
| | | @Excel(name = "销售合同号") |
| | |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "销售台账id") |
| | | private Long salesLedgerId; |
| | | |
| | | @ApiModelProperty(value = "销售报价产品表id") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | @Excel(name = "状态") |
| | | private String status; |
| | | |
| | | @ApiModelProperty(value = "发货日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "发货日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date shippingDate; |
| | | |
| | | @ApiModelProperty(value = "发货编号") |
| | | @Excel(name = "发货编号") |
| | | private String shippingNo; |
| | | |
| | | @ApiModelProperty(value = "快递单号") |
| | | @Excel(name = "快递单号") |
| | | private String expressNumber; |
| | | |
| | | @ApiModelProperty(value = "快递公司") |
| | | @Excel(name = "快递公司") |
| | | private String expressCompany; |
| | | |
| | | @ApiModelProperty(value = "发货类型") |
| | | @Excel(name = "发货类型") |
| | | private String type; |
| | | |
| | | @ApiModelProperty(value = "发货车牌号") |
| | | @Excel(name = "发货车牌号") |
| | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | @ApiModelProperty(value = "审批人id") |
| | | @TableField(exist = false) |
| | | private Integer approverId; |
| | | |
| | | } |