|
@@ -1,6 +1,7 @@
|
|
|
package com.hcloud.microserver.system.facade.carbon.forms;
|
|
|
|
|
|
import com.hcloud.microserver.commoncore.base.BaseForm;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -14,10 +15,13 @@ public class ProductTypePriceForm extends BaseForm {
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
+ @ApiModelProperty(value = "审核状态 0:待审核 1:审核通过 2:审核未通过")
|
|
|
private Integer checkState;
|
|
|
|
|
|
- private Date checkTime;
|
|
|
+ @ApiModelProperty(value = "审核通过时间")
|
|
|
+ private String checkTime;
|
|
|
|
|
|
+ @ApiModelProperty(value = "审核备注")
|
|
|
private String checkRemark;
|
|
|
|
|
|
private Integer state;
|
|
@@ -30,7 +34,9 @@ public class ProductTypePriceForm extends BaseForm {
|
|
|
|
|
|
private Date modifiedTime;
|
|
|
|
|
|
+ @ApiModelProperty(value = "类别id")
|
|
|
private String fkProductType;
|
|
|
|
|
|
+ @ApiModelProperty(value = "类别名称")
|
|
|
private String typeName;
|
|
|
}
|