master:档口返回系统标识;

pull/1121/head
liujiang 2025-09-05 21:53:05 +08:00
parent 1e77009e4c
commit d5db8550a6
3 changed files with 6 additions and 1 deletions

View File

@ -41,6 +41,8 @@ public class StoreSimpleResVO {
private Boolean focus;
@ApiModelProperty(value = "档口logo")
private SSFileVO logo;
@ApiModelProperty(value = "档口库存系统 1 步橘网 2 天友 3 发货宝")
private Integer stockSys;
@Data
public static class SSFileVO {

View File

@ -43,6 +43,8 @@ public class StoreSimpleResDTO {
private Long storeLogoId;
@ApiModelProperty(value = "档口logo")
private SSFileDTO logo;
@ApiModelProperty(value = "档口库存系统 1 步橘网 2 天友 3 发货宝")
private Integer stockSys;
@Data
public static class SSFileDTO {

View File

@ -33,7 +33,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
s.store_address,
sc.legal_name,
sc.license_name,
s.store_logo_id
s.store_logo_id,
s.stock_sys
FROM
store s JOIN store_certificate sc ON s.id = sc.store_id
WHERE