cp空间新增状态字段

(cherry picked from commit 6f4b9d5f5dcc754f1077c21506b11d8f7d977974)
This commit is contained in:
tianfeng 2026-04-27 19:03:31 +08:00
parent e4c8f7f3fe
commit 4dd52b44d2
2 changed files with 6 additions and 0 deletions

View File

@ -62,6 +62,11 @@ public class CpSimpleUserProfileCO implements Serializable {
*/ */
private String cpUserNickname; private String cpUserNickname;
/**
* cp状态
*/
private String status;
private Long cpValId; private Long cpValId;
/** /**

View File

@ -52,6 +52,7 @@ public class CoupleSpaceQryExe {
co.setCpAccount(cpInfo.getCpAccount()); co.setCpAccount(cpInfo.getCpAccount());
co.setCpUserAvatar(cpInfo.getCpUserAvatar()); co.setCpUserAvatar(cpInfo.getCpUserAvatar());
co.setCpUserNickname(cpInfo.getCpUserNickname()); co.setCpUserNickname(cpInfo.getCpUserNickname());
co.setStatus(cpInfo.getStatus());
co.setCpValId(cpInfo.getCpValId()); co.setCpValId(cpInfo.getCpValId());
co.setCpValue(cpInfo.getCpValue()); co.setCpValue(cpInfo.getCpValue());
co.setDays(cpInfo.getDays()); co.setDays(cpInfo.getDays());