完善社交应用审核通过、取消审核通过界面端功能逻辑。
This commit is contained in:
56
src/main/java/com/nis/domain/specific/ConfigGroupInfo.java
Normal file
56
src/main/java/com/nis/domain/specific/ConfigGroupInfo.java
Normal file
@@ -0,0 +1,56 @@
|
||||
package com.nis.domain.specific;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class ConfigGroupInfo {
|
||||
private Integer id;
|
||||
private Integer groupId;
|
||||
private String groupName;
|
||||
private Integer isIssued;
|
||||
private Date insertTime;
|
||||
private Date updateTime;
|
||||
private Integer groupType;
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
public Integer getGroupId() {
|
||||
return groupId;
|
||||
}
|
||||
public void setGroupId(Integer groupId) {
|
||||
this.groupId = groupId;
|
||||
}
|
||||
public String getGroupName() {
|
||||
return groupName;
|
||||
}
|
||||
public void setGroupName(String groupName) {
|
||||
this.groupName = groupName;
|
||||
}
|
||||
public Integer getIsIssued() {
|
||||
return isIssued;
|
||||
}
|
||||
public void setIsIssued(Integer isIssued) {
|
||||
this.isIssued = isIssued;
|
||||
}
|
||||
public Date getInsertTime() {
|
||||
return insertTime;
|
||||
}
|
||||
public void setInsertTime(Date insertTime) {
|
||||
this.insertTime = insertTime;
|
||||
}
|
||||
public Date getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
public void setUpdateTime(Date updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
public Integer getGroupType() {
|
||||
return groupType;
|
||||
}
|
||||
public void setGroupType(Integer groupType) {
|
||||
this.groupType = groupType;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user