lin
2024-03-25 27276ad478ff1e5f2f3b2ce3dac70ec83296fe74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.springblade.modules.partyOrganization.vo;
 
import lombok.Data;
import org.springblade.modules.partyOrganization.entity.PartyOrganization;
 
@Data
public class PartyOrganizationVO extends PartyOrganization {
 
    //党员数
    private Integer memberCount;
 
    //负责人名字或者党成员名字
    private String name;
}