123456789101112131415161718192021222324 |
- package com.malk.ruisi.entity;
- import lombok.Data;
- @Data
- public class RsQysConfigInfo {
- private String aId;// 公司ID
- private String type;// 业务分类代码
- private String categoryId;// 业务分类契约锁ID
- private String callBackSecretKey;// 业务分类回调密钥
- public RsQysConfigInfo(){}
- public RsQysConfigInfo(String aId, String type, String categoryId, String callBackSecretKey){
- this.aId=aId;
- this.type=type;
- this.categoryId=categoryId;
- this.callBackSecretKey=callBackSecretKey;
- }
- }
|