耗材报损

耗材记录统计bug
This commit is contained in:
2024-09-25 17:20:35 +08:00
parent 46beff3cd9
commit faa463e396
3 changed files with 23 additions and 14 deletions

View File

@@ -97,6 +97,12 @@ public class TbConsInfoFlow implements Serializable {
@Column(name = "`order_no`")
@ApiModelProperty(value = "订单编号")
private String orderNo;
@Column(name = "`cover_img`")
@ApiModelProperty(value = "图片")
private String coverImg;
@Column(name = "`remark`")
@ApiModelProperty(value = "备注")
private String remark;
@Transient
@TableField(exist = false)

View File

@@ -51,6 +51,9 @@ public class TbConsInfoFlowDto implements Serializable {
private Integer orderId;
private String orderNo;
private String coverImg;
private String remark;
}