获取品牌

This commit is contained in:
dimengzhe
2024-01-19 16:22:12 +08:00
parent 0669cfa7b5
commit 82783ea341
2 changed files with 5 additions and 1 deletions

View File

@@ -15,4 +15,8 @@ public class BrandVo {
private String brandName; private String brandName;
@ApiModelProperty("品牌id") @ApiModelProperty("品牌id")
private String id; private String id;
@ApiModelProperty("起始数量")
private String qssl;
@ApiModelProperty("订购协议")
private String dgxy;
} }

View File

@@ -24,6 +24,6 @@
</sql> </sql>
<select id="getList" resultType="com.yxt.yythmall.mallplus.mbg.pms.entity.brand.BrandVo"> <select id="getList" resultType="com.yxt.yythmall.mallplus.mbg.pms.entity.brand.BrandVo">
select name brandName,id from pms_brand select name brandName,id,qssl,dgxy from pms_brand order by sort asc
</select> </select>
</mapper> </mapper>