dev798
parent
bfee419d3c
commit
566090ea36
|
@ -0,0 +1,22 @@
|
|||
package com.muyu.product.domain.DTO;
|
||||
|
||||
import com.muyu.common.core.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/4/3 10:54
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value = "ProductType")
|
||||
public class ProductType extends BaseEntity {
|
||||
|
||||
|
||||
private Integer id;
|
||||
|
||||
@ApiModelProperty(name = "类型名称" ,value = "类型名称")
|
||||
private String typeName;
|
||||
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
package com.muyu.product.domain.DTO;
|
||||
|
||||
import com.muyu.common.core.domain.BaseEntity;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author: wangxinyuan
|
||||
* @Date: 2024/4/3 10:56
|
||||
*/
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "TypeAttrs")
|
||||
public class TypeAttrs extends BaseEntity {
|
||||
|
||||
private Integer typeAttrValueId;
|
||||
|
||||
private String typeAttrValueName;
|
||||
}
|
|
@ -22,7 +22,7 @@ import static com.muyu.common.core.domain.AjaxResult.success;
|
|||
*/
|
||||
@RestController
|
||||
@RequestMapping("argument")
|
||||
@Api(value = "下拉框管理")
|
||||
@Api(value = "下拉框查询")
|
||||
public class ArgumentController {
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue