继续优化代码

This commit is contained in:
dataprince 2023-07-11 17:32:05 +08:00
parent c7b1f50f11
commit 75e45d5b42
12 changed files with 12 additions and 12 deletions

View File

@ -26,7 +26,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
* 客户主表(mb)Controller
*
* @author 数据小王子
* @date 2023-07-11
* 2023-07-11
*/
@RestController
@RequestMapping("/demo/customer")

View File

@ -25,7 +25,7 @@ import com.ruoyi.common.utils.poi.ExcelUtil;
* 产品树表mbController
*
* @author 数据小王子
* @date 2023-07-11
* 2023-07-11
*/
@RestController
@RequestMapping("/demo/product")

View File

@ -26,7 +26,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
* 学生信息单表(mb)Controller
*
* @author 数据小王子
* @date 2023-07-11
* 2023-07-11
*/
@RestController
@RequestMapping("/demo/student")

View File

@ -18,7 +18,7 @@ public interface DemoCustomerMapper
* @param customerId 客户主表(mb)主键
* @return 客户主表(mb)
*/
public DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
/**
* 查询客户主表(mb)列表

View File

@ -17,7 +17,7 @@ public interface DemoProductMapper
* @param productId 产品树表mb主键
* @return 产品树表mb
*/
public DemoProduct selectDemoProductByProductId(Long productId);
DemoProduct selectDemoProductByProductId(Long productId);
/**
* 查询产品树表mb列表

View File

@ -17,7 +17,7 @@ public interface DemoStudentMapper
* @param studentId 学生信息单表(mb)主键
* @return 学生信息单表(mb)
*/
public DemoStudent selectDemoStudentByStudentId(Long studentId);
DemoStudent selectDemoStudentByStudentId(Long studentId);
/**
* 查询学生信息单表(mb)列表

View File

@ -17,7 +17,7 @@ public interface IDemoCustomerService
* @param customerId 客户主表(mb)主键
* @return 客户主表(mb)
*/
public DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
/**
* 查询客户主表(mb)列表

View File

@ -17,7 +17,7 @@ public interface IDemoProductService
* @param productId 产品树表mb主键
* @return 产品树表mb
*/
public DemoProduct selectDemoProductByProductId(Long productId);
DemoProduct selectDemoProductByProductId(Long productId);
/**
* 查询产品树表mb列表

View File

@ -17,7 +17,7 @@ public interface IDemoStudentService
* @param studentId 学生信息单表(mb)主键
* @return 学生信息单表(mb)
*/
public DemoStudent selectDemoStudentByStudentId(Long studentId);
DemoStudent selectDemoStudentByStudentId(Long studentId);
/**
* 查询学生信息单表(mb)列表

View File

@ -29,7 +29,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
* ${functionName}Controller
*
* @author ${author}
* @date ${datetime}
* ${datetime}
*/
@RestController
@RequestMapping("/${moduleName}/${businessName}")

View File

@ -20,7 +20,7 @@ public interface ${ClassName}Mapper
* @param ${pkColumn.javaField} ${functionName}主键
* @return ${functionName}
*/
public ${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField});
${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField});
/**
* 查询${functionName}列表

View File

@ -17,7 +17,7 @@ public interface I${ClassName}Service
* @param ${pkColumn.javaField} ${functionName}主键
* @return ${functionName}
*/
public ${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField});
${ClassName} select${ClassName}By${pkColumn.capJavaField}(${pkColumn.javaType} ${pkColumn.javaField});
/**
* 查询${functionName}列表