添加耗材记录通过店铺id

This commit is contained in:
牛叉闪闪 2024-07-20 15:17:05 +08:00
parent 946a827154
commit 4bd089e0fc
2 changed files with 9 additions and 0 deletions

View File

@ -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")

View File

@ -14,4 +14,8 @@ public class ViewConInfoFlowQueryCriteria{
/** 模糊 */
@Query(type = Query.Type.INNER_LIKE)
private String conName;
@Query
private String shopId;
}