You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
708 B
36 lines
708 B
package com.hai.model;
|
|
|
|
import com.hai.entity.HighMerchant;
|
|
import com.hai.entity.HighMerchantStore;
|
|
import com.hai.entity.SecUser;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description:
|
|
* @Date: 2021/3/10 22:11
|
|
*/
|
|
public class HighMerchantStoreModel extends HighMerchantStore {
|
|
|
|
// 账号
|
|
private SecUser secUser;
|
|
|
|
// 商户
|
|
private HighMerchant highMerchant;
|
|
|
|
public SecUser getSecUser() {
|
|
return secUser;
|
|
}
|
|
|
|
public void setSecUser(SecUser secUser) {
|
|
this.secUser = secUser;
|
|
}
|
|
|
|
public HighMerchant getHighMerchant() {
|
|
return highMerchant;
|
|
}
|
|
|
|
public void setHighMerchant(HighMerchant highMerchant) {
|
|
this.highMerchant = highMerchant;
|
|
}
|
|
|
|
}
|
|
|