|
|
@ -38,8 +38,8 @@ public interface ${className}Service extends BaseService<${className}Entity> { |
|
|
|
* |
|
|
|
* @param params |
|
|
|
* @return PageData<${className}DTO> |
|
|
|
* @author |
|
|
|
* @date |
|
|
|
* @author generator |
|
|
|
* @date ${date} |
|
|
|
*/ |
|
|
|
PageData<${className}DTO> page(Map<String, Object> params); |
|
|
|
|
|
|
@ -48,8 +48,8 @@ public interface ${className}Service extends BaseService<${className}Entity> { |
|
|
|
* |
|
|
|
* @param params |
|
|
|
* @return java.util.List<${className}DTO> |
|
|
|
* @author |
|
|
|
* @date |
|
|
|
* @author generator |
|
|
|
* @date ${date} |
|
|
|
*/ |
|
|
|
List<${className}DTO> list(Map<String, Object> params); |
|
|
|
|
|
|
@ -58,8 +58,8 @@ public interface ${className}Service extends BaseService<${className}Entity> { |
|
|
|
* |
|
|
|
* @param id |
|
|
|
* @return ${className}DTO |
|
|
|
* @author |
|
|
|
* @date |
|
|
|
* @author generator |
|
|
|
* @date ${date} |
|
|
|
*/ |
|
|
|
${className}DTO get(String id); |
|
|
|
|
|
|
@ -68,8 +68,8 @@ public interface ${className}Service extends BaseService<${className}Entity> { |
|
|
|
* |
|
|
|
* @param dto |
|
|
|
* @return void |
|
|
|
* @author |
|
|
|
* @date |
|
|
|
* @author generator |
|
|
|
* @date ${date} |
|
|
|
*/ |
|
|
|
void save(${className}DTO dto); |
|
|
|
|
|
|
@ -78,8 +78,8 @@ public interface ${className}Service extends BaseService<${className}Entity> { |
|
|
|
* |
|
|
|
* @param dto |
|
|
|
* @return void |
|
|
|
* @author |
|
|
|
* @date |
|
|
|
* @author generator |
|
|
|
* @date ${date} |
|
|
|
*/ |
|
|
|
void update(${className}DTO dto); |
|
|
|
|
|
|
@ -88,8 +88,8 @@ public interface ${className}Service extends BaseService<${className}Entity> { |
|
|
|
* |
|
|
|
* @param ids |
|
|
|
* @return void |
|
|
|
* @author |
|
|
|
* @date |
|
|
|
* @author generator |
|
|
|
* @date ${date} |
|
|
|
*/ |
|
|
|
void delete(String[] ids); |
|
|
|
} |