| package com.dayu.henanlibrary.model; | 
|   | 
| import android.app.Activity; | 
|   | 
| import com.dayu.henanlibrary.dbBean.UserCardBean; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * Created by Android Studio. | 
|  * author: zuo | 
|  * Date: 2023-11-23 | 
|  * Time: 16:35 | 
|  * 备注:用户记录的mode | 
|  */ | 
| public class UserListMode { | 
|     List<UserCardBean> userCardBeanList; | 
|   | 
|     public UserListMode(Activity activity) { | 
|   | 
|     } | 
|   | 
|     public List<UserCardBean> getUserCardBeanList() { | 
|         return userCardBeanList; | 
|     } | 
|   | 
|     public void setUserCardBeanList(List<UserCardBean> userCardBeanList) { | 
|         this.userCardBeanList = userCardBeanList; | 
|     } | 
| } |