@@ -158,5 +158,6 @@ public class GuestAuthorize extends BaseEntity {
@ApiModelProperty(value = "园区名称")
private String agencyName;
-
+ @ApiModelProperty(value = "登记来源,1:小程序,2:后台,3:访客机")
+ private Integer registerSource;
}
@@ -129,6 +129,7 @@ public class GuestAuthorizeController {
ga.setEnableType(OperationConstant.ZERO);
ga.setBeginDate(beginDate);
ga.setEndDate(endDate);
+ ga.setRegisterSource(1);
GuestAuthorize vo = this.guestAuthorizeClient.save(ga);
return R.data(vo);