| 1234567891011121314151617181920212223242526 |
- package com.template.model.vo;
- import lombok.Data;
- /**
- * @Author: binguo
- * @Date: 2024/1/5 星期五 14:53
- * @Description: com.template.model.vo
- * @Version: 1.0
- */
- @Data
- public class BsLeaveVo {
- private String resultcode;
- private String msg;
- private String data;
- private String appid;
- private String timestamp;
- private String sign;
- }
|