| | |
| | | @TableName("`orders`") |
| | | public class Orders { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @ApiModelProperty(value = "主键", example = "1") |
| | | private Integer id; |
| | | |
| | |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "开始时间 yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date startDate; |
| | | |
| | | @ApiModelProperty(value = "结束时间 yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date endDate; |
| | | |
| | | @ApiModelProperty(value = "地点信息/用车起点/用餐地点") |
| | |
| | | @ApiModelProperty(value = "用工类型:0=采摘工;1=分拣工;2=包装工;(用工订单)", example = "1") |
| | | private Integer workType; |
| | | |
| | | @ApiModelProperty(value = "计价数量1(天数/用车次数/小时/斤数)", example = "1") |
| | | @ApiModelProperty(value = "计价数量1((重量/人数/(天数/小时/重量)/(天数/次数)/用餐天数)", example = "1") |
| | | private Integer priceNum1; |
| | | |
| | | @ApiModelProperty(value = "计价数量2(人数/用餐份数)", example = "1") |
| | | @ApiModelProperty(value = "计价数量2(分拣工/包装工 人数)", example = "1") |
| | | private Integer priceNum2; |
| | | |
| | | @ApiModelProperty(value = "需求补充") |
| | |
| | | @ApiModelProperty(value = "费用标准", example = "1") |
| | | private Long price; |
| | | |
| | | |
| | | @ApiModelProperty(value = "预估费用", example = "1") |
| | | private Long estimatedAccount; |
| | | |
| | | |
| | | @ApiModelProperty(value = "实际支付费用", example = "1") |
| | | private Long payAccount; |
| | |
| | | @ApiModelProperty(value = "支付时间", example = "1") |
| | | private Date payTime; |
| | | |
| | | @ApiModelProperty(value = "联系人", example = "1") |
| | | private String linkPhone; |
| | | |
| | | @ApiModelProperty(value = "联系方式", example = "1") |
| | | private String linkName; |
| | | |
| | | @ApiModelProperty(value = "车辆规格", example = "1") |
| | | private String carUnit; |
| | | |
| | | @ApiModelProperty(value = "图片") |
| | | @TableField(exist = false) |
| | | private List<Multifile> multifileList; |