添加耗材记录通过店铺id
This commit is contained in:
parent
946a827154
commit
4bd089e0fc
|
|
@ -43,6 +43,11 @@ public class ViewConInfoFlow implements Serializable {
|
|||
@ApiModelProperty(value = "耗材名称")
|
||||
private String conName;
|
||||
|
||||
|
||||
@Column(name = "`shop_id`")
|
||||
@ApiModelProperty(value = "店铺id")
|
||||
private Integer shopId;
|
||||
|
||||
@Column(name = "`con_return`",nullable = false)
|
||||
@NotNull
|
||||
@ApiModelProperty(value = "con_return")
|
||||
|
|
|
|||
|
|
@ -14,4 +14,8 @@ public class ViewConInfoFlowQueryCriteria{
|
|||
/** 模糊 */
|
||||
@Query(type = Query.Type.INNER_LIKE)
|
||||
private String conName;
|
||||
|
||||
|
||||
@Query
|
||||
private String shopId;
|
||||
}
|
||||
Loading…
Reference in New Issue