Commit 31c21eb092b1e257abc5032bcd7ac1c2b07a12e3

Authored by 张志伟
1 parent 8f3f3243

feature(*): 站岗信息新增门店

- 站岗信息新增门店
fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/vo/pool/PubStandVO.java
... ... @@ -59,4 +59,8 @@ public class PubStandVO {
59 59 * 转化率要求
60 60 */
61 61 private BigDecimal ratio;
  62 + /**
  63 + * 门店id
  64 + */
  65 + private Long shopId;
62 66 }
... ...
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/pub/PubStandBizService.java
... ... @@ -126,6 +126,7 @@ public class PubStandBizService {
126 126 }
127 127 fillPubStandVO(standVO, info);
128 128 fillSetting(standVO, groupId);
  129 + standVO.setShopId(shopId);
129 130 return standVO;
130 131 }
131 132  
... ...