feat:预炸
This commit is contained in:
@@ -32,6 +32,6 @@ public class PreFryRecordsDTO {
|
||||
@ApiModelProperty("是否违规")
|
||||
private Integer violationFlag;
|
||||
@ApiModelProperty("违规原因")
|
||||
private Integer violationReason;
|
||||
private String violationReason;
|
||||
|
||||
}
|
||||
|
||||
@@ -19,6 +19,8 @@ public class PreFryRecordsDetailDTO {
|
||||
|
||||
@ApiModelProperty( "门店编码")
|
||||
private String storeCode;
|
||||
@ApiModelProperty( "门店名称")
|
||||
private String storeName;
|
||||
|
||||
@ApiModelProperty( "预炸产品编码")
|
||||
private Long productId;
|
||||
@@ -43,6 +45,12 @@ public class PreFryRecordsDetailDTO {
|
||||
@ApiModelProperty( "申请类型")
|
||||
private Integer currentApplyType;
|
||||
|
||||
@ApiModelProperty("是否违规")
|
||||
private Integer violationFlag;
|
||||
|
||||
@ApiModelProperty("违规原因")
|
||||
private String violationReason;
|
||||
|
||||
@ApiModelProperty( "状态记录")
|
||||
private List<PreFryStageImagesDTO> stageHistory;
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ public class PreFryRecordsDO {
|
||||
@Column(name = "updated_flag")
|
||||
private Integer violationFlag;
|
||||
@Column(name = "violation_reason")
|
||||
private Integer violationReason;
|
||||
private String violationReason;
|
||||
|
||||
|
||||
public Integer getViolationFlag() {
|
||||
@@ -84,11 +84,11 @@ public class PreFryRecordsDO {
|
||||
this.violationFlag = violationFlag;
|
||||
}
|
||||
|
||||
public Integer getViolationReason() {
|
||||
public String getViolationReason() {
|
||||
return violationReason;
|
||||
}
|
||||
|
||||
public void setViolationReason(Integer violationReason) {
|
||||
public void setViolationReason(String violationReason) {
|
||||
this.violationReason = violationReason;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user