This commit is contained in:
shuo.wang
2025-06-25 14:01:39 +08:00
parent d466018f21
commit 40a3988a40
3 changed files with 8 additions and 3 deletions

View File

@@ -22,11 +22,15 @@ public class PreFryRecordsDetailDTO {
@ApiModelProperty( "门店名称")
private String storeName;
@ApiModelProperty( "预炸产品编码")
@ApiModelProperty( "预炸产品id")
private Long productId;
@ApiModelProperty( "预炸产品编码")
private String productCode;
@ApiModelProperty( "预炸产品名称")
private String productName;
@ApiModelProperty( "预炸记录编码")
private String recordCode;

View File

@@ -19,7 +19,7 @@ public class PreFryRecordsDO {
private String storeCode;
/**
* 预炸产品编码
* 预炸产品id
*/
@Column(name = "product_id")
private Long productId;