继续优化代码
This commit is contained in:
parent
c7b1f50f11
commit
75e45d5b42
@ -26,7 +26,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|||||||
* 客户主表(mb)Controller
|
* 客户主表(mb)Controller
|
||||||
*
|
*
|
||||||
* @author 数据小王子
|
* @author 数据小王子
|
||||||
* @date 2023-07-11
|
* 2023-07-11
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/demo/customer")
|
@RequestMapping("/demo/customer")
|
||||||
|
@ -25,7 +25,7 @@ import com.ruoyi.common.utils.poi.ExcelUtil;
|
|||||||
* 产品树表(mb)Controller
|
* 产品树表(mb)Controller
|
||||||
*
|
*
|
||||||
* @author 数据小王子
|
* @author 数据小王子
|
||||||
* @date 2023-07-11
|
* 2023-07-11
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/demo/product")
|
@RequestMapping("/demo/product")
|
||||||
|
@ -26,7 +26,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|||||||
* 学生信息单表(mb)Controller
|
* 学生信息单表(mb)Controller
|
||||||
*
|
*
|
||||||
* @author 数据小王子
|
* @author 数据小王子
|
||||||
* @date 2023-07-11
|
* 2023-07-11
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/demo/student")
|
@RequestMapping("/demo/student")
|
||||||
|
@ -18,7 +18,7 @@ public interface DemoCustomerMapper
|
|||||||
* @param customerId 客户主表(mb)主键
|
* @param customerId 客户主表(mb)主键
|
||||||
* @return 客户主表(mb)
|
* @return 客户主表(mb)
|
||||||
*/
|
*/
|
||||||
public DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
|
DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询客户主表(mb)列表
|
* 查询客户主表(mb)列表
|
||||||
|
@ -17,7 +17,7 @@ public interface DemoProductMapper
|
|||||||
* @param productId 产品树表(mb)主键
|
* @param productId 产品树表(mb)主键
|
||||||
* @return 产品树表(mb)
|
* @return 产品树表(mb)
|
||||||
*/
|
*/
|
||||||
public DemoProduct selectDemoProductByProductId(Long productId);
|
DemoProduct selectDemoProductByProductId(Long productId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询产品树表(mb)列表
|
* 查询产品树表(mb)列表
|
||||||
|
@ -17,7 +17,7 @@ public interface DemoStudentMapper
|
|||||||
* @param studentId 学生信息单表(mb)主键
|
* @param studentId 学生信息单表(mb)主键
|
||||||
* @return 学生信息单表(mb)
|
* @return 学生信息单表(mb)
|
||||||
*/
|
*/
|
||||||
public DemoStudent selectDemoStudentByStudentId(Long studentId);
|
DemoStudent selectDemoStudentByStudentId(Long studentId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询学生信息单表(mb)列表
|
* 查询学生信息单表(mb)列表
|
||||||
|
@ -17,7 +17,7 @@ public interface IDemoCustomerService
|
|||||||
* @param customerId 客户主表(mb)主键
|
* @param customerId 客户主表(mb)主键
|
||||||
* @return 客户主表(mb)
|
* @return 客户主表(mb)
|
||||||
*/
|
*/
|
||||||
public DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
|
DemoCustomer selectDemoCustomerByCustomerId(Long customerId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询客户主表(mb)列表
|
* 查询客户主表(mb)列表
|
||||||
|
@ -17,7 +17,7 @@ public interface IDemoProductService
|
|||||||
* @param productId 产品树表(mb)主键
|
* @param productId 产品树表(mb)主键
|
||||||
* @return 产品树表(mb)
|
* @return 产品树表(mb)
|
||||||
*/
|
*/
|
||||||
public DemoProduct selectDemoProductByProductId(Long productId);
|
DemoProduct selectDemoProductByProductId(Long productId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询产品树表(mb)列表
|
* 查询产品树表(mb)列表
|
||||||
|
@ -17,7 +17,7 @@ public interface IDemoStudentService
|
|||||||
* @param studentId 学生信息单表(mb)主键
|
* @param studentId 学生信息单表(mb)主键
|
||||||
* @return 学生信息单表(mb)
|
* @return 学生信息单表(mb)
|
||||||
*/
|
*/
|
||||||
public DemoStudent selectDemoStudentByStudentId(Long studentId);
|
DemoStudent selectDemoStudentByStudentId(Long studentId);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询学生信息单表(mb)列表
|
* 查询学生信息单表(mb)列表
|
||||||
|
@ -29,7 +29,7 @@ import com.ruoyi.common.core.page.TableDataInfo;
|
|||||||
* ${functionName}Controller
|
* ${functionName}Controller
|
||||||
*
|
*
|
||||||
* @author ${author}
|
* @author ${author}
|
||||||
* @date ${datetime}
|
* ${datetime}
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/${moduleName}/${businessName}")
|
@RequestMapping("/${moduleName}/${businessName}")
|
||||||
|
@ -20,7 +20,7 @@ public interface ${ClassName}Mapper
|
|||||||
* @param ${pkColumn.javaField} ${functionName}主键
|
* @param ${pkColumn.javaField} ${functionName}主键
|
||||||
* @return ${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}列表
|
* 查询${functionName}列表
|
||||||
|
@ -17,7 +17,7 @@ public interface I${ClassName}Service
|
|||||||
* @param ${pkColumn.javaField} ${functionName}主键
|
* @param ${pkColumn.javaField} ${functionName}主键
|
||||||
* @return ${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}列表
|
* 查询${functionName}列表
|
||||||
|
Loading…
Reference in New Issue
Block a user