parent
be2087de72
commit
7f7796156b
38 changed files with 443 additions and 142 deletions
@ -1,4 +1,4 @@ |
||||
package com.huoran.nakadai.entity; |
||||
package com.huoran.common.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableField; |
@ -1,4 +1,4 @@ |
||||
package com.huoran.nakadai.entity; |
||||
package com.huoran.common.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
@ -0,0 +1,28 @@ |
||||
package com.huoran.nakadai.entity.req; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class OrderPageReq { |
||||
|
||||
@ApiModelProperty(value = "每页大小,默认10") |
||||
private Integer size = 10; |
||||
|
||||
@ApiModelProperty(value = "当前页,默认1") |
||||
private Integer current = 1; |
||||
|
||||
@ApiModelProperty(value = "订单类型:1为个人、2为组织") |
||||
private Integer orderType; |
||||
|
||||
@ApiModelProperty(value = "查询条件") |
||||
private String queryCriteria; |
||||
|
||||
//商机线索查询店铺订单
|
||||
@ApiModelProperty(hidden = true) |
||||
private Integer shopId; |
||||
|
||||
//我的采购查询个人订单
|
||||
@ApiModelProperty(hidden = true) |
||||
private String userId; |
||||
} |
@ -0,0 +1,21 @@ |
||||
package com.huoran.nakadai.entity.req; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
|
||||
@Data |
||||
public class ProductPageReq { |
||||
|
||||
@ApiModelProperty(value = "每页大小,默认10") |
||||
private Integer size = 10; |
||||
|
||||
@ApiModelProperty(value = "当前页,默认1") |
||||
private Integer current = 1; |
||||
|
||||
@ApiModelProperty(value = "默认是0,表示上架, 2下架,3草稿,4审核") |
||||
private Integer status; |
||||
|
||||
@ApiModelProperty(value = "商品名称") |
||||
private String prodName; |
||||
} |
@ -0,0 +1,14 @@ |
||||
package com.huoran.nakadai.entity.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class ProductCount { |
||||
|
||||
@ApiModelProperty(value = "状态") |
||||
private Integer status; |
||||
|
||||
@ApiModelProperty(value = "数量") |
||||
private Integer count; |
||||
} |
Loading…
Reference in new issue