6 changed files with 261 additions and 4 deletions
-
50src/main/java/com/gaotao/modules/report/controller/ReportController.java
-
37src/main/java/com/gaotao/modules/report/dao/ReportDao.java
-
44src/main/java/com/gaotao/modules/report/dao/impl/ReportDaoImpl.java
-
51src/main/java/com/gaotao/modules/report/data/CustomerReportRoleData.java
-
28src/main/java/com/gaotao/modules/report/service/ReportService.java
-
55src/main/java/com/gaotao/modules/report/service/impl/ReportServiceImpl.java
@ -0,0 +1,51 @@ |
|||
package com.gaotao.modules.report.data; |
|||
|
|||
import com.gaotao.modules.schedule.data.BaseData; |
|||
import org.apache.ibatis.type.Alias; |
|||
|
|||
/** |
|||
* @author LR |
|||
* @date 2022/4/13 14:48 |
|||
*/ |
|||
@Alias("CustomerReportRoleData") |
|||
public class CustomerReportRoleData extends BaseData { |
|||
private String reportId;// |
|||
private String roleId;// |
|||
private String roleName;// |
|||
private String checkedFlag;// |
|||
|
|||
public CustomerReportRoleData() { |
|||
} |
|||
|
|||
public String getReportId() { |
|||
return reportId; |
|||
} |
|||
|
|||
public void setReportId(String reportId) { |
|||
this.reportId = reportId; |
|||
} |
|||
|
|||
public String getRoleId() { |
|||
return roleId; |
|||
} |
|||
|
|||
public void setRoleId(String roleId) { |
|||
this.roleId = roleId; |
|||
} |
|||
|
|||
public String getRoleName() { |
|||
return roleName; |
|||
} |
|||
|
|||
public void setRoleName(String roleName) { |
|||
this.roleName = roleName; |
|||
} |
|||
|
|||
public String getCheckedFlag() { |
|||
return checkedFlag; |
|||
} |
|||
|
|||
public void setCheckedFlag(String checkedFlag) { |
|||
this.checkedFlag = checkedFlag; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue