Commit fec8abca authored by muhong's avatar muhong

修改表名称

parent 22da55bb
......@@ -30,7 +30,7 @@ import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.util.bcrypt.BCryptPasswordEncoder;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.Admin;
import com.wwdz.ch.db.service.DtsAdminService;
@RestController
......@@ -51,7 +51,7 @@ public class AdminAdminController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->管理员管理->查询,请求参数:username:{},page:{}", username, page);
List<DtsAdmin> adminList = adminService.querySelective(username, page, limit, sort, order);
List<Admin> adminList = adminService.querySelective(username, page, limit, sort, order);
long total = PageInfo.of(adminList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......@@ -61,7 +61,7 @@ public class AdminAdminController {
return ResponseUtil.ok(data);
}
private Object validate(DtsAdmin admin) {
private Object validate(Admin admin) {
String name = admin.getUsername();
if (StringUtils.isEmpty(name)) {
return ResponseUtil.badArgument();
......@@ -81,7 +81,7 @@ public class AdminAdminController {
@RequiresPermissions("admin:admin:create")
@RequiresPermissionsDesc(menu = { "系统管理", "管理员管理" }, button = "添加")
@PostMapping("/create")
public Object create(@RequestBody DtsAdmin admin) {
public Object create(@RequestBody Admin admin) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->管理员管理->添加,请求参数:{}", JSONObject.toJSONString(admin));
Object error = validate(admin);
......@@ -90,7 +90,7 @@ public class AdminAdminController {
}
String username = admin.getUsername();
List<DtsAdmin> adminList = adminService.findAdmin(username);
List<Admin> adminList = adminService.findAdmin(username);
if (adminList.size() > 0) {
logger.error("系统管理->管理员管理->添加 ,错误:{}", AdminResponseCode.ADMIN_NAME_EXIST.desc());
return AdminResponseUtil.fail(AdminResponseCode.ADMIN_NAME_EXIST);
......@@ -112,7 +112,7 @@ public class AdminAdminController {
public Object read(@NotNull Integer id) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->管理员管理->详情,请求参数,id:{}", id);
DtsAdmin admin = adminService.findById(id);
Admin admin = adminService.findById(id);
logger.info("【请求结束】系统管理->管理员管理->详情,响应结果:{}", JSONObject.toJSONString(admin));
return ResponseUtil.ok(admin);
......@@ -121,7 +121,7 @@ public class AdminAdminController {
@RequiresPermissions("admin:admin:update")
@RequiresPermissionsDesc(menu = { "系统管理", "管理员管理" }, button = "编辑")
@PostMapping("/update")
public Object update(@RequestBody DtsAdmin admin) {
public Object update(@RequestBody Admin admin) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->管理员管理->编辑,请求参数:{}", JSONObject.toJSONString(admin));
Object error = validate(admin);
......@@ -151,7 +151,7 @@ public class AdminAdminController {
@RequiresPermissions("admin:admin:delete")
@RequiresPermissionsDesc(menu = { "系统管理", "管理员管理" }, button = "删除")
@PostMapping("/delete")
public Object delete(@RequestBody DtsAdmin admin) {
public Object delete(@RequestBody Admin admin) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->管理员管理->删除,请求参数:{}", JSONObject.toJSONString(admin));
Integer anotherAdminId = admin.getId();
......
......@@ -41,7 +41,7 @@ import com.wwdz.ch.core.util.Base64;
import com.wwdz.ch.core.util.JacksonUtil;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.util.UUID;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.Admin;
import com.wwdz.ch.db.service.DtsPermissionService;
import com.wwdz.ch.db.service.DtsRoleService;
......@@ -118,7 +118,7 @@ public class AdminAuthController {
@GetMapping("/info")
public Object info() {
Subject currentUser = SecurityUtils.getSubject();
DtsAdmin admin = (DtsAdmin) currentUser.getPrincipal();
Admin admin = (Admin) currentUser.getPrincipal();
Map<String, Object> data = new HashMap<>();
data.put("name", admin.getUsername());
......
......@@ -21,7 +21,7 @@ import com.github.pagehelper.PageInfo;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsCollect;
import com.wwdz.ch.db.domain.CollectObsolete;
import com.wwdz.ch.db.service.DtsCollectService;
@RestController
......@@ -42,7 +42,7 @@ public class AdminCollectController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 用户管理->用户收藏->查询,请求参数:userId:{},page:{}", userId, page);
List<DtsCollect> collectList = collectService.querySelective(userId, valueId, page, limit, sort, order);
List<CollectObsolete> collectList = collectService.querySelective(userId, valueId, page, limit, sort, order);
long total = PageInfo.of(collectList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......
......@@ -21,7 +21,7 @@ import com.github.pagehelper.PageInfo;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsFeedback;
import com.wwdz.ch.db.domain.Feedback;
import com.wwdz.ch.db.service.DtsFeedbackService;
/**
......@@ -47,7 +47,7 @@ public class AdminFeedbackController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 用户管理->意见反馈->查询,请求参数:userId:{},username:{},page:{}", userId, username, page);
List<DtsFeedback> feedbackList = feedbackService.querySelective(userId, username, page, limit, sort, order);
List<Feedback> feedbackList = feedbackService.querySelective(userId, username, page, limit, sort, order);
long total = PageInfo.of(feedbackList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......
......@@ -21,7 +21,7 @@ import com.github.pagehelper.PageInfo;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsFootprint;
import com.wwdz.ch.db.domain.Footprint;
import com.wwdz.ch.db.service.DtsFootprintService;
@RestController
......@@ -42,7 +42,7 @@ public class AdminFootprintController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 用户管理->用户足迹->查询,请求参数:userId:{},goodsId:{},page:{}", userId, goodsId, page);
List<DtsFootprint> footprintList = footprintService.querySelective(userId, goodsId, page, limit, sort, order);
List<Footprint> footprintList = footprintService.querySelective(userId, goodsId, page, limit, sort, order);
long total = PageInfo.of(footprintList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......
......@@ -20,7 +20,7 @@ import com.github.pagehelper.PageInfo;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsSearchHistory;
import com.wwdz.ch.db.domain.SearchHistory;
import com.wwdz.ch.db.service.DtsSearchHistoryService;
@RestController
......@@ -40,7 +40,7 @@ public class AdminHistoryController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 用户管理->搜索历史->查询,请求参数:userId:{},keyword:{},page:{}", userId, keyword, page);
List<DtsSearchHistory> footprintList = searchHistoryService.querySelective(userId, keyword, page, limit, sort,
List<SearchHistory> footprintList = searchHistoryService.querySelective(userId, keyword, page, limit, sort,
order);
long total = PageInfo.of(footprintList).getTotal();
Map<String, Object> data = new HashMap<>();
......
......@@ -26,7 +26,7 @@ import com.github.pagehelper.PageInfo;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsIssue;
import com.wwdz.ch.db.domain.Issue;
import com.wwdz.ch.db.service.DtsIssueService;
@RestController
......@@ -47,7 +47,7 @@ public class AdminIssueController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->通用问题->查询,请求参数:question:{},page:{}", question, page);
List<DtsIssue> issueList = issueService.querySelective(question, page, limit, sort, order);
List<Issue> issueList = issueService.querySelective(question, page, limit, sort, order);
long total = PageInfo.of(issueList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......@@ -57,7 +57,7 @@ public class AdminIssueController {
return ResponseUtil.ok(data);
}
private Object validate(DtsIssue issue) {
private Object validate(Issue issue) {
String question = issue.getQuestion();
if (StringUtils.isEmpty(question)) {
return ResponseUtil.badArgument();
......@@ -72,7 +72,7 @@ public class AdminIssueController {
@RequiresPermissions("admin:issue:create")
@RequiresPermissionsDesc(menu = { "商场管理", "通用问题" }, button = "添加")
@PostMapping("/create")
public Object create(@RequestBody DtsIssue issue) {
public Object create(@RequestBody Issue issue) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->通用问题->添加,请求参数:question:{},page:{}", JSONObject.toJSONString(issue));
Object error = validate(issue);
......@@ -90,7 +90,7 @@ public class AdminIssueController {
public Object read(@NotNull Integer id) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->通用问题->详情,请求参数,id:{}", id);
DtsIssue issue = issueService.findById(id);
Issue issue = issueService.findById(id);
logger.info("【请求结束】商场管理->通用问题->详情,响应结果:{}", JSONObject.toJSONString(issue));
return ResponseUtil.ok(issue);
......@@ -99,7 +99,7 @@ public class AdminIssueController {
@RequiresPermissions("admin:issue:update")
@RequiresPermissionsDesc(menu = { "商场管理", "通用问题" }, button = "编辑")
@PostMapping("/update")
public Object update(@RequestBody DtsIssue issue) {
public Object update(@RequestBody Issue issue) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->通用问题->编辑,请求参数:{}", JSONObject.toJSONString(issue));
Object error = validate(issue);
......@@ -118,7 +118,7 @@ public class AdminIssueController {
@RequiresPermissions("admin:issue:delete")
@RequiresPermissionsDesc(menu = { "商场管理", "通用问题" }, button = "删除")
@PostMapping("/delete")
public Object delete(@RequestBody DtsIssue issue) {
public Object delete(@RequestBody Issue issue) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->通用问题->删除,请求参数:{}", JSONObject.toJSONString(issue));
Integer id = issue.getId();
......
......@@ -26,7 +26,7 @@ import com.wwdz.ch.admin.util.AuthSupport;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsKeyword;
import com.wwdz.ch.db.domain.Keyword;
import com.wwdz.ch.db.service.DtsKeywordService;
@RestController
......@@ -47,7 +47,7 @@ public class AdminKeywordController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->关键词->查询,请求参数:keyword:{},url:{},page:{}", keyword, url, page);
List<DtsKeyword> brandList = keywordService.querySelective(keyword, url, page, limit, sort, order);
List<Keyword> brandList = keywordService.querySelective(keyword, url, page, limit, sort, order);
long total = PageInfo.of(brandList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......@@ -57,7 +57,7 @@ public class AdminKeywordController {
return ResponseUtil.ok(data);
}
private Object validate(DtsKeyword keywords) {
private Object validate(Keyword keywords) {
String keyword = keywords.getKeyword();
if (StringUtils.isEmpty(keyword)) {
return ResponseUtil.badArgument();
......@@ -72,7 +72,7 @@ public class AdminKeywordController {
@RequiresPermissions("admin:keyword:create")
@RequiresPermissionsDesc(menu = { "商场管理", "关键词" }, button = "添加")
@PostMapping("/create")
public Object create(@RequestBody DtsKeyword keywords) {
public Object create(@RequestBody Keyword keywords) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->关键词->添加,请求参数:{}", JSONObject.toJSONString(keywords));
Object error = validate(keywords);
......@@ -91,7 +91,7 @@ public class AdminKeywordController {
public Object read(@NotNull Integer id) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->关键词->详情,请求参数,id:{}", id);
DtsKeyword keywords = keywordService.findById(id);
Keyword keywords = keywordService.findById(id);
logger.info("【请求结束】商场管理->关键词->详情,响应结果:{}", JSONObject.toJSONString(keywords));
return ResponseUtil.ok(keywords);
......@@ -100,7 +100,7 @@ public class AdminKeywordController {
@RequiresPermissions("admin:keyword:update")
@RequiresPermissionsDesc(menu = { "商场管理", "关键词" }, button = "编辑")
@PostMapping("/update")
public Object update(@RequestBody DtsKeyword keywords) {
public Object update(@RequestBody Keyword keywords) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->关键词->编辑,请求参数:{}", JSONObject.toJSONString(keywords));
Object error = validate(keywords);
......@@ -119,7 +119,7 @@ public class AdminKeywordController {
@RequiresPermissions("admin:keyword:delete")
@RequiresPermissionsDesc(menu = { "商场管理", "关键词" }, button = "删除")
@PostMapping("/delete")
public Object delete(@RequestBody DtsKeyword keyword) {
public Object delete(@RequestBody Keyword keyword) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->关键词->删除,请求参数:{}", JSONObject.toJSONString(keyword));
Integer id = keyword.getId();
......
......@@ -19,7 +19,7 @@ import org.springframework.web.bind.annotation.RestController;
import com.wwdz.ch.core.util.JacksonUtil;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.util.bcrypt.BCryptPasswordEncoder;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.Admin;
import com.wwdz.ch.db.service.DtsAdminService;
@RestController
......@@ -46,7 +46,7 @@ public class AdminProfileController {
}
Subject currentUser = SecurityUtils.getSubject();
DtsAdmin admin = (DtsAdmin) currentUser.getPrincipal();
Admin admin = (Admin) currentUser.getPrincipal();
BCryptPasswordEncoder encoder = new BCryptPasswordEncoder();
if (!encoder.matches(oldPassword, admin.getPassword())) {
......
......@@ -9,6 +9,7 @@ import java.util.Set;
import javax.validation.constraints.NotNull;
import com.wwdz.ch.admin.annotation.RequiresPermissionsDesc;
import com.wwdz.ch.db.domain.Role;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
......@@ -29,14 +30,12 @@ import com.wwdz.ch.admin.util.AdminResponseCode;
import com.wwdz.ch.admin.util.AdminResponseUtil;
import com.wwdz.ch.admin.util.AuthSupport;
import com.wwdz.ch.admin.util.PermVo;
import com.wwdz.ch.admin.util.Permission;
import com.wwdz.ch.admin.util.PermissionUtil;
import com.wwdz.ch.core.util.JacksonUtil;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsPermission;
import com.wwdz.ch.db.domain.DtsRole;
import com.wwdz.ch.db.domain.Permission;
import com.wwdz.ch.db.service.DtsPermissionService;
import com.wwdz.ch.db.service.DtsRoleService;
......@@ -60,7 +59,7 @@ public class AdminRoleController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->角色管理->角色查询,请求参数,name:{},page:{}", name, page);
List<DtsRole> roleList = roleService.querySelective(name, page, limit, sort, order);
List<Role> roleList = roleService.querySelective(name, page, limit, sort, order);
long total = PageInfo.of(roleList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......@@ -72,11 +71,11 @@ public class AdminRoleController {
@GetMapping("/options")
public Object options() {
List<DtsRole> roleList = roleService.queryAll();
List<Role> roleList = roleService.queryAll();
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->角色管理->查询所有角色");
List<Map<String, Object>> options = new ArrayList<>(roleList.size());
for (DtsRole role : roleList) {
for (Role role : roleList) {
Map<String, Object> option = new HashMap<>(2);
option.put("value", role.getId());
option.put("label", role.getName());
......@@ -93,13 +92,13 @@ public class AdminRoleController {
public Object read(@NotNull Integer id) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->角色管理->角色详情,请求参数,id:{}", id);
DtsRole role = roleService.findById(id);
Role role = roleService.findById(id);
logger.info("【请求结束】系统管理->角色管理->角色详情,响应结果:{}", JSONObject.toJSONString(role));
return ResponseUtil.ok(role);
}
private Object validate(DtsRole role) {
private Object validate(Role role) {
String name = role.getName();
if (StringUtils.isEmpty(name)) {
return ResponseUtil.badArgument();
......@@ -111,7 +110,7 @@ public class AdminRoleController {
@RequiresPermissions("admin:role:create")
@RequiresPermissionsDesc(menu = { "系统管理", "角色管理" }, button = "角色添加")
@PostMapping("/create")
public Object create(@RequestBody DtsRole role) {
public Object create(@RequestBody Role role) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->角色管理->角色添加,请求参数:{}", JSONObject.toJSONString(role));
Object error = validate(role);
......@@ -133,7 +132,7 @@ public class AdminRoleController {
@RequiresPermissions("admin:role:update")
@RequiresPermissionsDesc(menu = { "系统管理", "角色管理" }, button = "角色编辑")
@PostMapping("/update")
public Object update(@RequestBody DtsRole role) {
public Object update(@RequestBody Role role) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->角色管理->角色编辑,请求参数:{}", JSONObject.toJSONString(role));
Object error = validate(role);
......@@ -149,7 +148,7 @@ public class AdminRoleController {
@RequiresPermissions("admin:role:delete")
@RequiresPermissionsDesc(menu = { "系统管理", "角色管理" }, button = "角色删除")
@PostMapping("/delete")
public Object delete(@RequestBody DtsRole role) {
public Object delete(@RequestBody Role role) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->角色管理->角色删除,请求参数,id:{}", JSONObject.toJSONString(role));
Integer id = role.getId();
......@@ -170,7 +169,7 @@ public class AdminRoleController {
private List<PermVo> getSystemPermissions() {
final String basicPackage = "com.wwdz.ch.admin";
if (systemPermissions == null) {
List<Permission> permissions = PermissionUtil.listPermission(context, basicPackage);
List<com.wwdz.ch.admin.util.Permission> permissions = PermissionUtil.listPermission(context, basicPackage);
systemPermissions = PermissionUtil.listPermVo(permissions);
systemPermissionsString = PermissionUtil.listPermissionString(permissions);
}
......@@ -240,10 +239,10 @@ public class AdminRoleController {
// 先删除旧的权限,再更新新的权限
permissionService.deleteByRoleId(roleId);
for (String permission : permissions) {
DtsPermission DtsPermission = new DtsPermission();
DtsPermission.setRoleId(roleId);
DtsPermission.setPermission(permission);
permissionService.add(DtsPermission);
Permission permission1 = new Permission();
permission1.setRoleId(roleId);
permission1.setPermission(permission);
permissionService.add(permission1);
}
logger.info("【请求结束】系统管理->角色管理->权限变更,响应结果:{}", "成功!");
......
......@@ -9,7 +9,7 @@ import com.wwdz.ch.core.storage.StorageService;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsStorage;
import com.wwdz.ch.db.domain.Storage;
import com.wwdz.ch.db.service.DtsStorageService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.slf4j.Logger;
......@@ -47,7 +47,7 @@ public class AdminStorageController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->对象存储->查询,请求参数,name:{},key:{},page:{}", name, key, page);
List<DtsStorage> storageList = DtsStorageService.querySelective(key, name, page, limit, sort, order);
List<Storage> storageList = DtsStorageService.querySelective(key, name, page, limit, sort, order);
long total = PageInfo.of(storageList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......@@ -82,7 +82,7 @@ public class AdminStorageController {
public Object read(@NotNull Integer id) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->对象存储->详情,请求参数,id:{}", id);
DtsStorage storageInfo = DtsStorageService.findById(id);
Storage storageInfo = DtsStorageService.findById(id);
if (storageInfo == null) {
return ResponseUtil.badArgumentValue();
}
......@@ -94,7 +94,7 @@ public class AdminStorageController {
@RequiresPermissions("admin:storage:update")
@RequiresPermissionsDesc(menu = { "系统管理", "对象存储" }, button = "编辑")
@PostMapping("/update")
public Object update(@RequestBody DtsStorage dtsStorage) {
public Object update(@RequestBody Storage dtsStorage) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->对象存储->编辑,请求参数:{}", JSONObject.toJSONString(dtsStorage));
if (DtsStorageService.update(dtsStorage) == 0) {
......@@ -109,7 +109,7 @@ public class AdminStorageController {
@RequiresPermissions("admin:storage:delete")
@RequiresPermissionsDesc(menu = { "系统管理", "对象存储" }, button = "删除")
@PostMapping("/delete")
public Object delete(@RequestBody DtsStorage DtsStorage) {
public Object delete(@RequestBody Storage DtsStorage) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 系统管理->对象存储->删除,请求参数:{}", JSONObject.toJSONString(DtsStorage));
String key = DtsStorage.getKey();
......
......@@ -21,7 +21,7 @@ import com.github.pagehelper.PageInfo;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsUser;
import com.wwdz.ch.db.domain.User;
import com.wwdz.ch.db.service.DtsUserService;
@RestController
......@@ -42,7 +42,7 @@ public class AdminUserController {
@Order @RequestParam(defaultValue = "desc") String order) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 用户管理->会员管理->查询,请求参数,username:{},code:{},page:{}", username, mobile, page);
List<DtsUser> userList = userService.querySelective(username, mobile, page, limit, sort, order);
List<User> userList = userService.querySelective(username, mobile, page, limit, sort, order);
long total = PageInfo.of(userList).getTotal();
Map<String, Object> data = new HashMap<>();
data.put("total", total);
......
......@@ -31,7 +31,7 @@ import com.alibaba.fastjson.JSONObject;
import com.wwdz.ch.core.util.ResponseUtil;
import com.wwdz.ch.core.validator.Order;
import com.wwdz.ch.core.validator.Sort;
import com.wwdz.ch.db.domain.DtsCategory;
import com.wwdz.ch.db.domain.GoodsCategoryObsolete;
@RestController
@RequestMapping("/admin/category")
......@@ -164,7 +164,7 @@ public class CategoryController {
@RequiresPermissions("admin:category:delete")
@RequiresPermissionsDesc(menu = { "商场管理", "类目管理" }, button = "删除")
@PostMapping("/delete")
public Object delete(@RequestBody DtsCategory category) {
public Object delete(@RequestBody GoodsCategoryObsolete category) {
logger.info("【请求开始】操作人:[" + AuthSupport.userName()+ "] 商场管理->类目管理->删除,请求参数:{}", JSONObject.toJSONString(category));
Integer id = category.getId();
......
......@@ -6,7 +6,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.wwdz.ch.admin.util.AuthSupport;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.Admin;
import com.wwdz.ch.db.service.DtsRoleService;
@Service
......@@ -21,7 +21,7 @@ public class AdminDataAuthService {
*/
public boolean isBrandManager() {
Integer[] roleIds = null;
DtsAdmin currentUser = AuthSupport.currentUser();
Admin currentUser = AuthSupport.currentUser();
if (currentUser != null) {
roleIds = currentUser.getRoleIds();
Set<String> roles = roleService.queryByIds(roleIds);
......
......@@ -22,7 +22,7 @@ import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
import com.wwdz.ch.core.util.bcrypt.BCryptPasswordEncoder;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.Admin;
import com.wwdz.ch.db.service.DtsAdminService;
import com.wwdz.ch.db.service.DtsPermissionService;
import com.wwdz.ch.db.service.DtsRoleService;
......@@ -49,7 +49,7 @@ public class AdminAuthorizingRealm extends AuthorizingRealm {
throw new AuthorizationException("PrincipalCollection method argument cannot be null.");
}
DtsAdmin admin = (DtsAdmin) getAvailablePrincipal(principals);
Admin admin = (Admin) getAvailablePrincipal(principals);
Integer[] roleIds = admin.getRoleIds();
Set<String> roles = roleService.queryByIds(roleIds);
Set<String> permissions = permissionService.queryByRoleIds(roleIds);
......@@ -73,13 +73,13 @@ public class AdminAuthorizingRealm extends AuthorizingRealm {
throw new AccountException("密码不能为空");
}
List<DtsAdmin> adminList = adminService.findAdmin(username);
List<Admin> adminList = adminService.findAdmin(username);
Assert.state(adminList.size() < 2, "同一个用户名存在两个账户");
if (adminList.size() == 0) {
logger.error("找不到用户(" + username + ")的帐号信息");
throw new UnknownAccountException("找不到用户(" + username + ")的帐号信息");
}
DtsAdmin admin = adminList.get(0);
Admin admin = adminList.get(0);
BCryptPasswordEncoder encoder = new BCryptPasswordEncoder();
if (!encoder.matches(password, admin.getPassword())) {
......
......@@ -3,7 +3,7 @@ package com.wwdz.ch.admin.util;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.subject.Subject;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.Admin;
/**
* 用于权限支持服务
......@@ -23,11 +23,11 @@ public class AuthSupport {
* 获取用户
* @return
*/
public static DtsAdmin currentUser() {
DtsAdmin admin = null;
public static Admin currentUser() {
Admin admin = null;
Subject currentUser = SecurityUtils.getSubject();
if (currentUser != null) {
admin = (DtsAdmin) currentUser.getPrincipal();
admin = (Admin) currentUser.getPrincipal();
}
return admin;
}
......@@ -38,7 +38,7 @@ public class AuthSupport {
*/
public static String userName() {
String userName = null;
DtsAdmin currentUser = currentUser();
Admin currentUser = currentUser();
if (currentUser != null) {
userName = currentUser.getUsername();
}
......@@ -51,7 +51,7 @@ public class AuthSupport {
*/
public static Integer adminId() {
Integer adminId = null;
DtsAdmin currentUser = currentUser();
Admin currentUser = currentUser();
if (currentUser != null) {
adminId = currentUser.getId();
}
......
......@@ -7,7 +7,7 @@ import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import com.wwdz.ch.db.domain.DtsUserFormid;
import com.wwdz.ch.db.domain.UserFormidObsolete;
import com.wwdz.ch.db.service.DtsUserFormIdService;
import cn.binarywang.wx.miniapp.api.WxMaService;
......@@ -58,7 +58,7 @@ public class WxTemplateSender {
private void sendMsg(String touser, String templatId, String[] parms, String page, String color,
String emphasisKeyword) {
DtsUserFormid userFormid = formIdService.queryByOpenId(touser);
UserFormidObsolete userFormid = formIdService.queryByOpenId(touser);
if (userFormid == null)
return;
......
......@@ -8,7 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.Resource;
import com.wwdz.ch.core.util.CharUtil;
import com.wwdz.ch.db.domain.DtsStorage;
import com.wwdz.ch.db.domain.Storage;
import com.wwdz.ch.db.service.DtsStorageService;
/**
......@@ -16,7 +16,7 @@ import com.wwdz.ch.db.service.DtsStorageService;
*/
public class StorageService {
private String active;
private Storage storage;
private com.wwdz.ch.core.storage.Storage storage;
@Autowired
private DtsStorageService DtsStorageService;
......@@ -28,11 +28,11 @@ public class StorageService {
this.active = active;
}
public Storage getStorage() {
public com.wwdz.ch.core.storage.Storage getStorage() {
return storage;
}
public void setStorage(Storage storage) {
public void setStorage(com.wwdz.ch.core.storage.Storage storage) {
this.storage = storage;
}
......@@ -70,7 +70,7 @@ public class StorageService {
String suffix = originalFilename.substring(index);
String key = null;
DtsStorage storageInfo = null;
Storage storageInfo = null;
do {
key = CharUtil.getRandomString(20) + suffix;
......
......@@ -7,7 +7,7 @@ import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.wwdz.ch.db.domain.DtsSystem;
import com.wwdz.ch.db.domain.System;
import com.wwdz.ch.db.service.DtsSystemConfigService;
/**
......@@ -40,8 +40,8 @@ class ConfigService {
* @param prefix
*/
public void reloadConfig(String prefix) {
List<DtsSystem> list = dtsSystemConfigService.queryAll();
for (DtsSystem item : list) {
List<System> list = dtsSystemConfigService.queryAll();
for (System item : list) {
// 符合条件,添加
if (item.getKeyName().startsWith(prefix))
BaseConfig.addConfig(item.getKeyName(), item.getKeyValue());
......@@ -52,8 +52,8 @@ class ConfigService {
* 读取全部配置
*/
private void inistConfigs() {
List<DtsSystem> list = dtsSystemConfigService.queryAll();
for (DtsSystem item : list) {
List<System> list = dtsSystemConfigService.queryAll();
for (System item : list) {
BaseConfig.addConfig(item.getKeyName(), item.getKeyValue());
}
}
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsAccountTrace;
import com.wwdz.ch.db.domain.DtsAccountTraceExample;
import com.wwdz.ch.db.domain.AccountTraceObsolete;
import com.wwdz.ch.db.domain.AccountTraceObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsAccountTraceMapper {
public interface AccountTraceObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_account_trace
*
* @mbg.generated
*/
long countByExample(DtsAccountTraceExample example);
long countByExample(AccountTraceObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsAccountTraceExample example);
int deleteByExample(AccountTraceObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int insert(DtsAccountTrace record);
int insert(AccountTraceObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int insertSelective(DtsAccountTrace record);
int insertSelective(AccountTraceObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsAccountTraceMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAccountTrace selectOneByExample(DtsAccountTraceExample example);
AccountTraceObsolete selectOneByExample(AccountTraceObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsAccountTraceMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAccountTrace selectOneByExampleSelective(@Param("example") DtsAccountTraceExample example, @Param("selective") DtsAccountTrace.Column ... selective);
AccountTraceObsolete selectOneByExampleSelective(@Param("example") AccountTraceObsoleteExample example, @Param("selective") AccountTraceObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsAccountTraceMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsAccountTrace> selectByExampleSelective(@Param("example") DtsAccountTraceExample example, @Param("selective") DtsAccountTrace.Column ... selective);
List<AccountTraceObsolete> selectByExampleSelective(@Param("example") AccountTraceObsoleteExample example, @Param("selective") AccountTraceObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
List<DtsAccountTrace> selectByExample(DtsAccountTraceExample example);
List<AccountTraceObsolete> selectByExample(AccountTraceObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsAccountTraceMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAccountTrace selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsAccountTrace.Column ... selective);
AccountTraceObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") AccountTraceObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
DtsAccountTrace selectByPrimaryKey(Integer id);
AccountTraceObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -104,7 +104,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsAccountTrace record, @Param("example") DtsAccountTraceExample example);
int updateByExampleSelective(@Param("record") AccountTraceObsolete record, @Param("example") AccountTraceObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -112,7 +112,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsAccountTrace record, @Param("example") DtsAccountTraceExample example);
int updateByExample(@Param("record") AccountTraceObsolete record, @Param("example") AccountTraceObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -120,7 +120,7 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsAccountTrace record);
int updateByPrimaryKeySelective(AccountTraceObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -128,5 +128,5 @@ public interface DtsAccountTraceMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsAccountTrace record);
int updateByPrimaryKey(AccountTraceObsolete record);
}
\ No newline at end of file
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsAdmin;
import com.wwdz.ch.db.domain.DtsAdminExample;
import com.wwdz.ch.db.domain.Admin;
import com.wwdz.ch.db.domain.AdminExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsAdminMapper {
public interface AdminMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_admin
*
* @mbg.generated
*/
long countByExample(DtsAdminExample example);
long countByExample(AdminExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsAdminExample example);
int deleteByExample(AdminExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int insert(DtsAdmin record);
int insert(Admin record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int insertSelective(DtsAdmin record);
int insertSelective(Admin record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsAdminMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAdmin selectOneByExample(DtsAdminExample example);
Admin selectOneByExample(AdminExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsAdminMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAdmin selectOneByExampleSelective(@Param("example") DtsAdminExample example, @Param("selective") DtsAdmin.Column ... selective);
Admin selectOneByExampleSelective(@Param("example") AdminExample example, @Param("selective") Admin.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsAdminMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsAdmin> selectByExampleSelective(@Param("example") DtsAdminExample example, @Param("selective") DtsAdmin.Column ... selective);
List<Admin> selectByExampleSelective(@Param("example") AdminExample example, @Param("selective") Admin.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
List<DtsAdmin> selectByExample(DtsAdminExample example);
List<Admin> selectByExample(AdminExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsAdminMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAdmin selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsAdmin.Column ... selective);
Admin selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") Admin.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
DtsAdmin selectByPrimaryKey(Integer id);
Admin selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsAdminMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsAdmin selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Admin selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsAdmin record, @Param("example") DtsAdminExample example);
int updateByExampleSelective(@Param("record") Admin record, @Param("example") AdminExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsAdmin record, @Param("example") DtsAdminExample example);
int updateByExample(@Param("record") Admin record, @Param("example") AdminExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsAdmin record);
int updateByPrimaryKeySelective(Admin record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsAdminMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsAdmin record);
int updateByPrimaryKey(Admin record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsAdminMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsAdminExample example);
int logicalDeleteByExample(@Param("example") AdminExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsCollect;
import com.wwdz.ch.db.domain.DtsCollectExample;
import com.wwdz.ch.db.domain.CollectObsolete;
import com.wwdz.ch.db.domain.CollectObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsCollectMapper {
public interface CollectObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_collect
*
* @mbg.generated
*/
long countByExample(DtsCollectExample example);
long countByExample(CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsCollectExample example);
int deleteByExample(CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int insert(DtsCollect record);
int insert(CollectObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int insertSelective(DtsCollect record);
int insertSelective(CollectObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsCollectMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCollect selectOneByExample(DtsCollectExample example);
CollectObsolete selectOneByExample(CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsCollectMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCollect selectOneByExampleSelective(@Param("example") DtsCollectExample example, @Param("selective") DtsCollect.Column ... selective);
CollectObsolete selectOneByExampleSelective(@Param("example") CollectObsoleteExample example, @Param("selective") CollectObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsCollectMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsCollect> selectByExampleSelective(@Param("example") DtsCollectExample example, @Param("selective") DtsCollect.Column ... selective);
List<CollectObsolete> selectByExampleSelective(@Param("example") CollectObsoleteExample example, @Param("selective") CollectObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
List<DtsCollect> selectByExample(DtsCollectExample example);
List<CollectObsolete> selectByExample(CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsCollectMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCollect selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") DtsCollect.Column ... selective);
CollectObsolete selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") CollectObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
DtsCollect selectByPrimaryKey(Long id);
CollectObsolete selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsCollectMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCollect selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
CollectObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsCollect record, @Param("example") DtsCollectExample example);
int updateByExampleSelective(@Param("record") CollectObsolete record, @Param("example") CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsCollect record, @Param("example") DtsCollectExample example);
int updateByExample(@Param("record") CollectObsolete record, @Param("example") CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsCollect record);
int updateByPrimaryKeySelective(CollectObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsCollectMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsCollect record);
int updateByPrimaryKey(CollectObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsCollectMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsCollectExample example);
int logicalDeleteByExample(@Param("example") CollectObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsFeedback;
import com.wwdz.ch.db.domain.DtsFeedbackExample;
import com.wwdz.ch.db.domain.Feedback;
import com.wwdz.ch.db.domain.FeedbackExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsFeedbackMapper {
public interface FeedbackMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_feedback
*
* @mbg.generated
*/
long countByExample(DtsFeedbackExample example);
long countByExample(FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsFeedbackExample example);
int deleteByExample(FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int insert(DtsFeedback record);
int insert(Feedback record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int insertSelective(DtsFeedback record);
int insertSelective(Feedback record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsFeedbackMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFeedback selectOneByExample(DtsFeedbackExample example);
Feedback selectOneByExample(FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsFeedbackMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFeedback selectOneByExampleSelective(@Param("example") DtsFeedbackExample example, @Param("selective") DtsFeedback.Column ... selective);
Feedback selectOneByExampleSelective(@Param("example") FeedbackExample example, @Param("selective") Feedback.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsFeedbackMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsFeedback> selectByExampleSelective(@Param("example") DtsFeedbackExample example, @Param("selective") DtsFeedback.Column ... selective);
List<Feedback> selectByExampleSelective(@Param("example") FeedbackExample example, @Param("selective") Feedback.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
List<DtsFeedback> selectByExample(DtsFeedbackExample example);
List<Feedback> selectByExample(FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsFeedbackMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFeedback selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") DtsFeedback.Column ... selective);
Feedback selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") Feedback.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
DtsFeedback selectByPrimaryKey(Long id);
Feedback selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsFeedbackMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFeedback selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Feedback selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsFeedback record, @Param("example") DtsFeedbackExample example);
int updateByExampleSelective(@Param("record") Feedback record, @Param("example") FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsFeedback record, @Param("example") DtsFeedbackExample example);
int updateByExample(@Param("record") Feedback record, @Param("example") FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsFeedback record);
int updateByPrimaryKeySelective(Feedback record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsFeedbackMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsFeedback record);
int updateByPrimaryKey(Feedback record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsFeedbackMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsFeedbackExample example);
int logicalDeleteByExample(@Param("example") FeedbackExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsFootprint;
import com.wwdz.ch.db.domain.DtsFootprintExample;
import com.wwdz.ch.db.domain.Footprint;
import com.wwdz.ch.db.domain.FootprintExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsFootprintMapper {
public interface FootprintMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_footprint
*
* @mbg.generated
*/
long countByExample(DtsFootprintExample example);
long countByExample(FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsFootprintExample example);
int deleteByExample(FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int insert(DtsFootprint record);
int insert(Footprint record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int insertSelective(DtsFootprint record);
int insertSelective(Footprint record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsFootprintMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFootprint selectOneByExample(DtsFootprintExample example);
Footprint selectOneByExample(FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsFootprintMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFootprint selectOneByExampleSelective(@Param("example") DtsFootprintExample example, @Param("selective") DtsFootprint.Column ... selective);
Footprint selectOneByExampleSelective(@Param("example") FootprintExample example, @Param("selective") Footprint.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsFootprintMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsFootprint> selectByExampleSelective(@Param("example") DtsFootprintExample example, @Param("selective") DtsFootprint.Column ... selective);
List<Footprint> selectByExampleSelective(@Param("example") FootprintExample example, @Param("selective") Footprint.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
List<DtsFootprint> selectByExample(DtsFootprintExample example);
List<Footprint> selectByExample(FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsFootprintMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFootprint selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") DtsFootprint.Column ... selective);
Footprint selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") Footprint.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
DtsFootprint selectByPrimaryKey(Long id);
Footprint selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsFootprintMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsFootprint selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Footprint selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsFootprint record, @Param("example") DtsFootprintExample example);
int updateByExampleSelective(@Param("record") Footprint record, @Param("example") FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsFootprint record, @Param("example") DtsFootprintExample example);
int updateByExample(@Param("record") Footprint record, @Param("example") FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsFootprint record);
int updateByPrimaryKeySelective(Footprint record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsFootprintMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsFootprint record);
int updateByPrimaryKey(Footprint record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsFootprintMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsFootprintExample example);
int logicalDeleteByExample(@Param("example") FootprintExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsGoodsAttribute;
import com.wwdz.ch.db.domain.DtsGoodsAttributeExample;
import com.wwdz.ch.db.domain.GoodsAttributeObsolete;
import com.wwdz.ch.db.domain.GoodsAttributeObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsGoodsAttributeMapper {
public interface GoodsAttributeObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_goods_attribute
*
* @mbg.generated
*/
long countByExample(DtsGoodsAttributeExample example);
long countByExample(GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsGoodsAttributeExample example);
int deleteByExample(GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int insert(DtsGoodsAttribute record);
int insert(GoodsAttributeObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int insertSelective(DtsGoodsAttribute record);
int insertSelective(GoodsAttributeObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsGoodsAttributeMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsAttribute selectOneByExample(DtsGoodsAttributeExample example);
GoodsAttributeObsolete selectOneByExample(GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsGoodsAttributeMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsAttribute selectOneByExampleSelective(@Param("example") DtsGoodsAttributeExample example, @Param("selective") DtsGoodsAttribute.Column ... selective);
GoodsAttributeObsolete selectOneByExampleSelective(@Param("example") GoodsAttributeObsoleteExample example, @Param("selective") GoodsAttributeObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsGoodsAttributeMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsGoodsAttribute> selectByExampleSelective(@Param("example") DtsGoodsAttributeExample example, @Param("selective") DtsGoodsAttribute.Column ... selective);
List<GoodsAttributeObsolete> selectByExampleSelective(@Param("example") GoodsAttributeObsoleteExample example, @Param("selective") GoodsAttributeObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
List<DtsGoodsAttribute> selectByExample(DtsGoodsAttributeExample example);
List<GoodsAttributeObsolete> selectByExample(GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsGoodsAttributeMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsAttribute selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsGoodsAttribute.Column ... selective);
GoodsAttributeObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") GoodsAttributeObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
DtsGoodsAttribute selectByPrimaryKey(Integer id);
GoodsAttributeObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsGoodsAttributeMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsAttribute selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
GoodsAttributeObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsGoodsAttribute record, @Param("example") DtsGoodsAttributeExample example);
int updateByExampleSelective(@Param("record") GoodsAttributeObsolete record, @Param("example") GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsGoodsAttribute record, @Param("example") DtsGoodsAttributeExample example);
int updateByExample(@Param("record") GoodsAttributeObsolete record, @Param("example") GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsGoodsAttribute record);
int updateByPrimaryKeySelective(GoodsAttributeObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsGoodsAttributeMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsGoodsAttribute record);
int updateByPrimaryKey(GoodsAttributeObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsGoodsAttributeMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsGoodsAttributeExample example);
int logicalDeleteByExample(@Param("example") GoodsAttributeObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsCategory;
import com.wwdz.ch.db.domain.DtsCategoryExample;
import com.wwdz.ch.db.domain.GoodsCategoryObsolete;
import com.wwdz.ch.db.domain.GoodsCategoryObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsCategoryMapper {
public interface GoodsCategoryObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_category
*
* @mbg.generated
*/
long countByExample(DtsCategoryExample example);
long countByExample(GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsCategoryExample example);
int deleteByExample(GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int insert(DtsCategory record);
int insert(GoodsCategoryObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int insertSelective(DtsCategory record);
int insertSelective(GoodsCategoryObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsCategoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCategory selectOneByExample(DtsCategoryExample example);
GoodsCategoryObsolete selectOneByExample(GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsCategoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCategory selectOneByExampleSelective(@Param("example") DtsCategoryExample example, @Param("selective") DtsCategory.Column ... selective);
GoodsCategoryObsolete selectOneByExampleSelective(@Param("example") GoodsCategoryObsoleteExample example, @Param("selective") GoodsCategoryObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsCategoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsCategory> selectByExampleSelective(@Param("example") DtsCategoryExample example, @Param("selective") DtsCategory.Column ... selective);
List<GoodsCategoryObsolete> selectByExampleSelective(@Param("example") GoodsCategoryObsoleteExample example, @Param("selective") GoodsCategoryObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
List<DtsCategory> selectByExample(DtsCategoryExample example);
List<GoodsCategoryObsolete> selectByExample(GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsCategoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCategory selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsCategory.Column ... selective);
GoodsCategoryObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") GoodsCategoryObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
DtsCategory selectByPrimaryKey(Integer id);
GoodsCategoryObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsCategoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsCategory selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
GoodsCategoryObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsCategory record, @Param("example") DtsCategoryExample example);
int updateByExampleSelective(@Param("record") GoodsCategoryObsolete record, @Param("example") GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsCategory record, @Param("example") DtsCategoryExample example);
int updateByExample(@Param("record") GoodsCategoryObsolete record, @Param("example") GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsCategory record);
int updateByPrimaryKeySelective(GoodsCategoryObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsCategoryMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsCategory record);
int updateByPrimaryKey(GoodsCategoryObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsCategoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsCategoryExample example);
int logicalDeleteByExample(@Param("example") GoodsCategoryObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsGoods;
import com.wwdz.ch.db.domain.DtsGoodsExample;
import com.wwdz.ch.db.domain.GoodsObsolete;
import com.wwdz.ch.db.domain.GoodsObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsGoodsMapper {
public interface GoodsObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_goods
*
* @mbg.generated
*/
long countByExample(DtsGoodsExample example);
long countByExample(GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsGoodsExample example);
int deleteByExample(GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int insert(DtsGoods record);
int insert(GoodsObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int insertSelective(DtsGoods record);
int insertSelective(GoodsObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoods selectOneByExample(DtsGoodsExample example);
GoodsObsolete selectOneByExample(GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoods selectOneByExampleSelective(@Param("example") DtsGoodsExample example, @Param("selective") DtsGoods.Column ... selective);
GoodsObsolete selectOneByExampleSelective(@Param("example") GoodsObsoleteExample example, @Param("selective") GoodsObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoods selectOneByExampleWithBLOBs(DtsGoodsExample example);
GoodsObsolete selectOneByExampleWithBLOBs(GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -80,7 +80,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsGoods> selectByExampleSelective(@Param("example") DtsGoodsExample example, @Param("selective") DtsGoods.Column ... selective);
List<GoodsObsolete> selectByExampleSelective(@Param("example") GoodsObsoleteExample example, @Param("selective") GoodsObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
List<DtsGoods> selectByExampleWithBLOBs(DtsGoodsExample example);
List<GoodsObsolete> selectByExampleWithBLOBs(GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
List<DtsGoods> selectByExample(DtsGoodsExample example);
List<GoodsObsolete> selectByExample(GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoods selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsGoods.Column ... selective);
GoodsObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") GoodsObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
DtsGoods selectByPrimaryKey(Integer id);
GoodsObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -122,7 +122,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoods selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
GoodsObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -130,7 +130,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsGoods record, @Param("example") DtsGoodsExample example);
int updateByExampleSelective(@Param("record") GoodsObsolete record, @Param("example") GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -138,7 +138,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int updateByExampleWithBLOBs(@Param("record") DtsGoods record, @Param("example") DtsGoodsExample example);
int updateByExampleWithBLOBs(@Param("record") GoodsObsolete record, @Param("example") GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsGoods record, @Param("example") DtsGoodsExample example);
int updateByExample(@Param("record") GoodsObsolete record, @Param("example") GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -154,7 +154,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsGoods record);
int updateByPrimaryKeySelective(GoodsObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -162,7 +162,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeyWithBLOBs(DtsGoods record);
int updateByPrimaryKeyWithBLOBs(GoodsObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -170,7 +170,7 @@ public interface DtsGoodsMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsGoods record);
int updateByPrimaryKey(GoodsObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -179,7 +179,7 @@ public interface DtsGoodsMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsGoodsExample example);
int logicalDeleteByExample(@Param("example") GoodsObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsGoodsProduct;
import com.wwdz.ch.db.domain.DtsGoodsProductExample;
import com.wwdz.ch.db.domain.GoodsProductObsolete;
import com.wwdz.ch.db.domain.GoodsProductObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsGoodsProductMapper {
public interface GoodsProductObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_goods_product
*
* @mbg.generated
*/
long countByExample(DtsGoodsProductExample example);
long countByExample(GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsGoodsProductExample example);
int deleteByExample(GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int insert(DtsGoodsProduct record);
int insert(GoodsProductObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int insertSelective(DtsGoodsProduct record);
int insertSelective(GoodsProductObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsGoodsProductMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsProduct selectOneByExample(DtsGoodsProductExample example);
GoodsProductObsolete selectOneByExample(GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsGoodsProductMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsProduct selectOneByExampleSelective(@Param("example") DtsGoodsProductExample example, @Param("selective") DtsGoodsProduct.Column ... selective);
GoodsProductObsolete selectOneByExampleSelective(@Param("example") GoodsProductObsoleteExample example, @Param("selective") GoodsProductObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsGoodsProductMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsGoodsProduct> selectByExampleSelective(@Param("example") DtsGoodsProductExample example, @Param("selective") DtsGoodsProduct.Column ... selective);
List<GoodsProductObsolete> selectByExampleSelective(@Param("example") GoodsProductObsoleteExample example, @Param("selective") GoodsProductObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
List<DtsGoodsProduct> selectByExample(DtsGoodsProductExample example);
List<GoodsProductObsolete> selectByExample(GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsGoodsProductMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsProduct selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsGoodsProduct.Column ... selective);
GoodsProductObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") GoodsProductObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
DtsGoodsProduct selectByPrimaryKey(Integer id);
GoodsProductObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsGoodsProductMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsProduct selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
GoodsProductObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsGoodsProduct record, @Param("example") DtsGoodsProductExample example);
int updateByExampleSelective(@Param("record") GoodsProductObsolete record, @Param("example") GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsGoodsProduct record, @Param("example") DtsGoodsProductExample example);
int updateByExample(@Param("record") GoodsProductObsolete record, @Param("example") GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsGoodsProduct record);
int updateByPrimaryKeySelective(GoodsProductObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsGoodsProductMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsGoodsProduct record);
int updateByPrimaryKey(GoodsProductObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsGoodsProductMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsGoodsProductExample example);
int logicalDeleteByExample(@Param("example") GoodsProductObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsGoodsSpecification;
import com.wwdz.ch.db.domain.DtsGoodsSpecificationExample;
import com.wwdz.ch.db.domain.GoodsSpecificationObsolete;
import com.wwdz.ch.db.domain.GoodsSpecificationObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsGoodsSpecificationMapper {
public interface GoodsSpecificationObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_goods_specification
*
* @mbg.generated
*/
long countByExample(DtsGoodsSpecificationExample example);
long countByExample(GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsGoodsSpecificationExample example);
int deleteByExample(GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int insert(DtsGoodsSpecification record);
int insert(GoodsSpecificationObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int insertSelective(DtsGoodsSpecification record);
int insertSelective(GoodsSpecificationObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsGoodsSpecificationMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsSpecification selectOneByExample(DtsGoodsSpecificationExample example);
GoodsSpecificationObsolete selectOneByExample(GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsGoodsSpecificationMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsSpecification selectOneByExampleSelective(@Param("example") DtsGoodsSpecificationExample example, @Param("selective") DtsGoodsSpecification.Column ... selective);
GoodsSpecificationObsolete selectOneByExampleSelective(@Param("example") GoodsSpecificationObsoleteExample example, @Param("selective") GoodsSpecificationObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsGoodsSpecificationMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsGoodsSpecification> selectByExampleSelective(@Param("example") DtsGoodsSpecificationExample example, @Param("selective") DtsGoodsSpecification.Column ... selective);
List<GoodsSpecificationObsolete> selectByExampleSelective(@Param("example") GoodsSpecificationObsoleteExample example, @Param("selective") GoodsSpecificationObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
List<DtsGoodsSpecification> selectByExample(DtsGoodsSpecificationExample example);
List<GoodsSpecificationObsolete> selectByExample(GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsGoodsSpecificationMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsSpecification selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsGoodsSpecification.Column ... selective);
GoodsSpecificationObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") GoodsSpecificationObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
DtsGoodsSpecification selectByPrimaryKey(Integer id);
GoodsSpecificationObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsGoodsSpecificationMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsGoodsSpecification selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
GoodsSpecificationObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsGoodsSpecification record, @Param("example") DtsGoodsSpecificationExample example);
int updateByExampleSelective(@Param("record") GoodsSpecificationObsolete record, @Param("example") GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsGoodsSpecification record, @Param("example") DtsGoodsSpecificationExample example);
int updateByExample(@Param("record") GoodsSpecificationObsolete record, @Param("example") GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsGoodsSpecification record);
int updateByPrimaryKeySelective(GoodsSpecificationObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsGoodsSpecificationMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsGoodsSpecification record);
int updateByPrimaryKey(GoodsSpecificationObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsGoodsSpecificationMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsGoodsSpecificationExample example);
int logicalDeleteByExample(@Param("example") GoodsSpecificationObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsIssue;
import com.wwdz.ch.db.domain.DtsIssueExample;
import com.wwdz.ch.db.domain.Issue;
import com.wwdz.ch.db.domain.IssueExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsIssueMapper {
public interface IssueMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_issue
*
* @mbg.generated
*/
long countByExample(DtsIssueExample example);
long countByExample(IssueExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsIssueExample example);
int deleteByExample(IssueExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int insert(DtsIssue record);
int insert(Issue record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int insertSelective(DtsIssue record);
int insertSelective(Issue record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsIssueMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsIssue selectOneByExample(DtsIssueExample example);
Issue selectOneByExample(IssueExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsIssueMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsIssue selectOneByExampleSelective(@Param("example") DtsIssueExample example, @Param("selective") DtsIssue.Column ... selective);
Issue selectOneByExampleSelective(@Param("example") IssueExample example, @Param("selective") Issue.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsIssueMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsIssue> selectByExampleSelective(@Param("example") DtsIssueExample example, @Param("selective") DtsIssue.Column ... selective);
List<Issue> selectByExampleSelective(@Param("example") IssueExample example, @Param("selective") Issue.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
List<DtsIssue> selectByExample(DtsIssueExample example);
List<Issue> selectByExample(IssueExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsIssueMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsIssue selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsIssue.Column ... selective);
Issue selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") Issue.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
DtsIssue selectByPrimaryKey(Integer id);
Issue selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsIssueMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsIssue selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Issue selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsIssue record, @Param("example") DtsIssueExample example);
int updateByExampleSelective(@Param("record") Issue record, @Param("example") IssueExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsIssue record, @Param("example") DtsIssueExample example);
int updateByExample(@Param("record") Issue record, @Param("example") IssueExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsIssue record);
int updateByPrimaryKeySelective(Issue record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsIssueMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsIssue record);
int updateByPrimaryKey(Issue record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsIssueMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsIssueExample example);
int logicalDeleteByExample(@Param("example") IssueExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsKeyword;
import com.wwdz.ch.db.domain.DtsKeywordExample;
import com.wwdz.ch.db.domain.Keyword;
import com.wwdz.ch.db.domain.KeywordExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsKeywordMapper {
public interface KeywordMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_keyword
*
* @mbg.generated
*/
long countByExample(DtsKeywordExample example);
long countByExample(KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsKeywordExample example);
int deleteByExample(KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int insert(DtsKeyword record);
int insert(Keyword record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int insertSelective(DtsKeyword record);
int insertSelective(Keyword record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsKeywordMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsKeyword selectOneByExample(DtsKeywordExample example);
Keyword selectOneByExample(KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsKeywordMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsKeyword selectOneByExampleSelective(@Param("example") DtsKeywordExample example, @Param("selective") DtsKeyword.Column ... selective);
Keyword selectOneByExampleSelective(@Param("example") KeywordExample example, @Param("selective") Keyword.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsKeywordMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsKeyword> selectByExampleSelective(@Param("example") DtsKeywordExample example, @Param("selective") DtsKeyword.Column ... selective);
List<Keyword> selectByExampleSelective(@Param("example") KeywordExample example, @Param("selective") Keyword.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
List<DtsKeyword> selectByExample(DtsKeywordExample example);
List<Keyword> selectByExample(KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsKeywordMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsKeyword selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsKeyword.Column ... selective);
Keyword selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") Keyword.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
DtsKeyword selectByPrimaryKey(Integer id);
Keyword selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsKeywordMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsKeyword selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Keyword selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsKeyword record, @Param("example") DtsKeywordExample example);
int updateByExampleSelective(@Param("record") Keyword record, @Param("example") KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsKeyword record, @Param("example") DtsKeywordExample example);
int updateByExample(@Param("record") Keyword record, @Param("example") KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsKeyword record);
int updateByPrimaryKeySelective(Keyword record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsKeywordMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsKeyword record);
int updateByPrimaryKey(Keyword record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsKeywordMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsKeywordExample example);
int logicalDeleteByExample(@Param("example") KeywordExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsPermission;
import com.wwdz.ch.db.domain.DtsPermissionExample;
import com.wwdz.ch.db.domain.Permission;
import com.wwdz.ch.db.domain.PermissionExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsPermissionMapper {
public interface PermissionMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_permission
*
* @mbg.generated
*/
long countByExample(DtsPermissionExample example);
long countByExample(PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsPermissionExample example);
int deleteByExample(PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int insert(DtsPermission record);
int insert(Permission record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int insertSelective(DtsPermission record);
int insertSelective(Permission record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsPermissionMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsPermission selectOneByExample(DtsPermissionExample example);
Permission selectOneByExample(PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsPermissionMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsPermission selectOneByExampleSelective(@Param("example") DtsPermissionExample example, @Param("selective") DtsPermission.Column ... selective);
Permission selectOneByExampleSelective(@Param("example") PermissionExample example, @Param("selective") Permission.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsPermissionMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsPermission> selectByExampleSelective(@Param("example") DtsPermissionExample example, @Param("selective") DtsPermission.Column ... selective);
List<Permission> selectByExampleSelective(@Param("example") PermissionExample example, @Param("selective") Permission.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
List<DtsPermission> selectByExample(DtsPermissionExample example);
List<Permission> selectByExample(PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsPermissionMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsPermission selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsPermission.Column ... selective);
Permission selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") Permission.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
DtsPermission selectByPrimaryKey(Integer id);
Permission selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsPermissionMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsPermission selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Permission selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsPermission record, @Param("example") DtsPermissionExample example);
int updateByExampleSelective(@Param("record") Permission record, @Param("example") PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsPermission record, @Param("example") DtsPermissionExample example);
int updateByExample(@Param("record") Permission record, @Param("example") PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsPermission record);
int updateByPrimaryKeySelective(Permission record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsPermissionMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsPermission record);
int updateByPrimaryKey(Permission record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsPermissionMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsPermissionExample example);
int logicalDeleteByExample(@Param("example") PermissionExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsRole;
import com.wwdz.ch.db.domain.DtsRoleExample;
import com.wwdz.ch.db.domain.Role;
import com.wwdz.ch.db.domain.RoleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsRoleMapper {
public interface RoleMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_role
*
* @mbg.generated
*/
long countByExample(DtsRoleExample example);
long countByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsRoleExample example);
int deleteByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int insert(DtsRole record);
int insert(Role record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int insertSelective(DtsRole record);
int insertSelective(Role record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsRoleMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsRole selectOneByExample(DtsRoleExample example);
Role selectOneByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsRoleMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsRole selectOneByExampleSelective(@Param("example") DtsRoleExample example, @Param("selective") DtsRole.Column ... selective);
Role selectOneByExampleSelective(@Param("example") RoleExample example, @Param("selective") Role.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsRoleMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsRole> selectByExampleSelective(@Param("example") DtsRoleExample example, @Param("selective") DtsRole.Column ... selective);
List<Role> selectByExampleSelective(@Param("example") RoleExample example, @Param("selective") Role.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
List<DtsRole> selectByExample(DtsRoleExample example);
List<Role> selectByExample(RoleExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsRoleMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsRole selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsRole.Column ... selective);
Role selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") Role.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
DtsRole selectByPrimaryKey(Integer id);
Role selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsRoleMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsRole selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Role selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsRole record, @Param("example") DtsRoleExample example);
int updateByExampleSelective(@Param("record") Role record, @Param("example") RoleExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsRole record, @Param("example") DtsRoleExample example);
int updateByExample(@Param("record") Role record, @Param("example") RoleExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsRole record);
int updateByPrimaryKeySelective(Role record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsRoleMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsRole record);
int updateByPrimaryKey(Role record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsRoleMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsRoleExample example);
int logicalDeleteByExample(@Param("example") RoleExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsSearchHistory;
import com.wwdz.ch.db.domain.DtsSearchHistoryExample;
import com.wwdz.ch.db.domain.SearchHistory;
import com.wwdz.ch.db.domain.SearchHistoryExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsSearchHistoryMapper {
public interface SearchHistoryMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_search_history
*
* @mbg.generated
*/
long countByExample(DtsSearchHistoryExample example);
long countByExample(SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsSearchHistoryExample example);
int deleteByExample(SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int insert(DtsSearchHistory record);
int insert(SearchHistory record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int insertSelective(DtsSearchHistory record);
int insertSelective(SearchHistory record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsSearchHistoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSearchHistory selectOneByExample(DtsSearchHistoryExample example);
SearchHistory selectOneByExample(SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsSearchHistoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSearchHistory selectOneByExampleSelective(@Param("example") DtsSearchHistoryExample example, @Param("selective") DtsSearchHistory.Column ... selective);
SearchHistory selectOneByExampleSelective(@Param("example") SearchHistoryExample example, @Param("selective") SearchHistory.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsSearchHistoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsSearchHistory> selectByExampleSelective(@Param("example") DtsSearchHistoryExample example, @Param("selective") DtsSearchHistory.Column ... selective);
List<SearchHistory> selectByExampleSelective(@Param("example") SearchHistoryExample example, @Param("selective") SearchHistory.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
List<DtsSearchHistory> selectByExample(DtsSearchHistoryExample example);
List<SearchHistory> selectByExample(SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsSearchHistoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSearchHistory selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") DtsSearchHistory.Column ... selective);
SearchHistory selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") SearchHistory.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
DtsSearchHistory selectByPrimaryKey(Long id);
SearchHistory selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsSearchHistoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSearchHistory selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
SearchHistory selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsSearchHistory record, @Param("example") DtsSearchHistoryExample example);
int updateByExampleSelective(@Param("record") SearchHistory record, @Param("example") SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsSearchHistory record, @Param("example") DtsSearchHistoryExample example);
int updateByExample(@Param("record") SearchHistory record, @Param("example") SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsSearchHistory record);
int updateByPrimaryKeySelective(SearchHistory record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsSearchHistoryMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsSearchHistory record);
int updateByPrimaryKey(SearchHistory record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsSearchHistoryMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsSearchHistoryExample example);
int logicalDeleteByExample(@Param("example") SearchHistoryExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsStorage;
import com.wwdz.ch.db.domain.DtsStorageExample;
import com.wwdz.ch.db.domain.Storage;
import com.wwdz.ch.db.domain.StorageExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsStorageMapper {
public interface StorageMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_storage
*
* @mbg.generated
*/
long countByExample(DtsStorageExample example);
long countByExample(StorageExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsStorageExample example);
int deleteByExample(StorageExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int insert(DtsStorage record);
int insert(Storage record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int insertSelective(DtsStorage record);
int insertSelective(Storage record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsStorageMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsStorage selectOneByExample(DtsStorageExample example);
Storage selectOneByExample(StorageExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsStorageMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsStorage selectOneByExampleSelective(@Param("example") DtsStorageExample example, @Param("selective") DtsStorage.Column ... selective);
Storage selectOneByExampleSelective(@Param("example") StorageExample example, @Param("selective") Storage.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsStorageMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsStorage> selectByExampleSelective(@Param("example") DtsStorageExample example, @Param("selective") DtsStorage.Column ... selective);
List<Storage> selectByExampleSelective(@Param("example") StorageExample example, @Param("selective") Storage.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
List<DtsStorage> selectByExample(DtsStorageExample example);
List<Storage> selectByExample(StorageExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsStorageMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsStorage selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsStorage.Column ... selective);
Storage selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") Storage.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
DtsStorage selectByPrimaryKey(Integer id);
Storage selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsStorageMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsStorage selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
Storage selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsStorage record, @Param("example") DtsStorageExample example);
int updateByExampleSelective(@Param("record") Storage record, @Param("example") StorageExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsStorage record, @Param("example") DtsStorageExample example);
int updateByExample(@Param("record") Storage record, @Param("example") StorageExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsStorage record);
int updateByPrimaryKeySelective(Storage record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsStorageMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsStorage record);
int updateByPrimaryKey(Storage record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsStorageMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsStorageExample example);
int logicalDeleteByExample(@Param("example") StorageExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsSystem;
import com.wwdz.ch.db.domain.DtsSystemExample;
import com.wwdz.ch.db.domain.System;
import com.wwdz.ch.db.domain.SystemExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsSystemMapper {
public interface SystemMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_system
*
* @mbg.generated
*/
long countByExample(DtsSystemExample example);
long countByExample(SystemExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsSystemExample example);
int deleteByExample(SystemExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int insert(DtsSystem record);
int insert(System record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int insertSelective(DtsSystem record);
int insertSelective(System record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsSystemMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSystem selectOneByExample(DtsSystemExample example);
System selectOneByExample(SystemExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsSystemMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSystem selectOneByExampleSelective(@Param("example") DtsSystemExample example, @Param("selective") DtsSystem.Column ... selective);
System selectOneByExampleSelective(@Param("example") SystemExample example, @Param("selective") System.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsSystemMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsSystem> selectByExampleSelective(@Param("example") DtsSystemExample example, @Param("selective") DtsSystem.Column ... selective);
List<System> selectByExampleSelective(@Param("example") SystemExample example, @Param("selective") System.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
List<DtsSystem> selectByExample(DtsSystemExample example);
List<System> selectByExample(SystemExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsSystemMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSystem selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsSystem.Column ... selective);
System selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") System.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
DtsSystem selectByPrimaryKey(Integer id);
System selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsSystemMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsSystem selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
System selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsSystem record, @Param("example") DtsSystemExample example);
int updateByExampleSelective(@Param("record") System record, @Param("example") SystemExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsSystem record, @Param("example") DtsSystemExample example);
int updateByExample(@Param("record") System record, @Param("example") SystemExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsSystem record);
int updateByPrimaryKeySelective(System record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsSystemMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsSystem record);
int updateByPrimaryKey(System record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsSystemMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsSystemExample example);
int logicalDeleteByExample(@Param("example") SystemExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsUserAccount;
import com.wwdz.ch.db.domain.DtsUserAccountExample;
import com.wwdz.ch.db.domain.UserAccountObsolete;
import com.wwdz.ch.db.domain.UserAccountObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsUserAccountMapper {
public interface UserAccountObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_user_account
*
* @mbg.generated
*/
long countByExample(DtsUserAccountExample example);
long countByExample(UserAccountObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsUserAccountExample example);
int deleteByExample(UserAccountObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int insert(DtsUserAccount record);
int insert(UserAccountObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int insertSelective(DtsUserAccount record);
int insertSelective(UserAccountObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsUserAccountMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserAccount selectOneByExample(DtsUserAccountExample example);
UserAccountObsolete selectOneByExample(UserAccountObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsUserAccountMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserAccount selectOneByExampleSelective(@Param("example") DtsUserAccountExample example, @Param("selective") DtsUserAccount.Column ... selective);
UserAccountObsolete selectOneByExampleSelective(@Param("example") UserAccountObsoleteExample example, @Param("selective") UserAccountObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsUserAccountMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsUserAccount> selectByExampleSelective(@Param("example") DtsUserAccountExample example, @Param("selective") DtsUserAccount.Column ... selective);
List<UserAccountObsolete> selectByExampleSelective(@Param("example") UserAccountObsoleteExample example, @Param("selective") UserAccountObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
List<DtsUserAccount> selectByExample(DtsUserAccountExample example);
List<UserAccountObsolete> selectByExample(UserAccountObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsUserAccountMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserAccount selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsUserAccount.Column ... selective);
UserAccountObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") UserAccountObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
DtsUserAccount selectByPrimaryKey(Integer id);
UserAccountObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -104,7 +104,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsUserAccount record, @Param("example") DtsUserAccountExample example);
int updateByExampleSelective(@Param("record") UserAccountObsolete record, @Param("example") UserAccountObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -112,7 +112,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsUserAccount record, @Param("example") DtsUserAccountExample example);
int updateByExample(@Param("record") UserAccountObsolete record, @Param("example") UserAccountObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -120,7 +120,7 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsUserAccount record);
int updateByPrimaryKeySelective(UserAccountObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -128,5 +128,5 @@ public interface DtsUserAccountMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsUserAccount record);
int updateByPrimaryKey(UserAccountObsolete record);
}
\ No newline at end of file
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsUserFormid;
import com.wwdz.ch.db.domain.DtsUserFormidExample;
import com.wwdz.ch.db.domain.UserFormidObsolete;
import com.wwdz.ch.db.domain.UserFormidObsoleteExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsUserFormidMapper {
public interface UserFormidObsoleteMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_user_formid
*
* @mbg.generated
*/
long countByExample(DtsUserFormidExample example);
long countByExample(UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsUserFormidExample example);
int deleteByExample(UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int insert(DtsUserFormid record);
int insert(UserFormidObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int insertSelective(DtsUserFormid record);
int insertSelective(UserFormidObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsUserFormidMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserFormid selectOneByExample(DtsUserFormidExample example);
UserFormidObsolete selectOneByExample(UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsUserFormidMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserFormid selectOneByExampleSelective(@Param("example") DtsUserFormidExample example, @Param("selective") DtsUserFormid.Column ... selective);
UserFormidObsolete selectOneByExampleSelective(@Param("example") UserFormidObsoleteExample example, @Param("selective") UserFormidObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsUserFormidMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsUserFormid> selectByExampleSelective(@Param("example") DtsUserFormidExample example, @Param("selective") DtsUserFormid.Column ... selective);
List<UserFormidObsolete> selectByExampleSelective(@Param("example") UserFormidObsoleteExample example, @Param("selective") UserFormidObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
List<DtsUserFormid> selectByExample(DtsUserFormidExample example);
List<UserFormidObsolete> selectByExample(UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsUserFormidMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserFormid selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") DtsUserFormid.Column ... selective);
UserFormidObsolete selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") UserFormidObsolete.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
DtsUserFormid selectByPrimaryKey(Integer id);
UserFormidObsolete selectByPrimaryKey(Integer id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsUserFormidMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUserFormid selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
UserFormidObsolete selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsUserFormid record, @Param("example") DtsUserFormidExample example);
int updateByExampleSelective(@Param("record") UserFormidObsolete record, @Param("example") UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsUserFormid record, @Param("example") DtsUserFormidExample example);
int updateByExample(@Param("record") UserFormidObsolete record, @Param("example") UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsUserFormid record);
int updateByPrimaryKeySelective(UserFormidObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsUserFormidMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsUserFormid record);
int updateByPrimaryKey(UserFormidObsolete record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsUserFormidMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsUserFormidExample example);
int logicalDeleteByExample(@Param("example") UserFormidObsoleteExample example);
/**
* This method was generated by MyBatis Generator.
......
package com.wwdz.ch.db.dao;
import com.wwdz.ch.db.domain.DtsUser;
import com.wwdz.ch.db.domain.DtsUserExample;
import com.wwdz.ch.db.domain.User;
import com.wwdz.ch.db.domain.UserExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface DtsUserMapper {
public interface UserMapper {
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dts_user
*
* @mbg.generated
*/
long countByExample(DtsUserExample example);
long countByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -20,7 +20,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int deleteByExample(DtsUserExample example);
int deleteByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -36,7 +36,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int insert(DtsUser record);
int insert(User record);
/**
* This method was generated by MyBatis Generator.
......@@ -44,7 +44,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int insertSelective(DtsUser record);
int insertSelective(User record);
/**
* This method was generated by MyBatis Generator.
......@@ -53,7 +53,7 @@ public interface DtsUserMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUser selectOneByExample(DtsUserExample example);
User selectOneByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -62,7 +62,7 @@ public interface DtsUserMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUser selectOneByExampleSelective(@Param("example") DtsUserExample example, @Param("selective") DtsUser.Column ... selective);
User selectOneByExampleSelective(@Param("example") UserExample example, @Param("selective") User.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -71,7 +71,7 @@ public interface DtsUserMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<DtsUser> selectByExampleSelective(@Param("example") DtsUserExample example, @Param("selective") DtsUser.Column ... selective);
List<User> selectByExampleSelective(@Param("example") UserExample example, @Param("selective") User.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -79,7 +79,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
List<DtsUser> selectByExample(DtsUserExample example);
List<User> selectByExample(UserExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -88,7 +88,7 @@ public interface DtsUserMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUser selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") DtsUser.Column ... selective);
User selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") User.Column ... selective);
/**
* This method was generated by MyBatis Generator.
......@@ -96,7 +96,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
DtsUser selectByPrimaryKey(Long id);
User selectByPrimaryKey(Long id);
/**
* This method was generated by MyBatis Generator.
......@@ -105,7 +105,7 @@ public interface DtsUserMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DtsUser selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
User selectByPrimaryKeyWithLogicalDelete(@Param("id") Long id, @Param("andLogicalDeleted") boolean andLogicalDeleted);
/**
* This method was generated by MyBatis Generator.
......@@ -113,7 +113,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int updateByExampleSelective(@Param("record") DtsUser record, @Param("example") DtsUserExample example);
int updateByExampleSelective(@Param("record") User record, @Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -121,7 +121,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int updateByExample(@Param("record") DtsUser record, @Param("example") DtsUserExample example);
int updateByExample(@Param("record") User record, @Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
......@@ -129,7 +129,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int updateByPrimaryKeySelective(DtsUser record);
int updateByPrimaryKeySelective(User record);
/**
* This method was generated by MyBatis Generator.
......@@ -137,7 +137,7 @@ public interface DtsUserMapper {
*
* @mbg.generated
*/
int updateByPrimaryKey(DtsUser record);
int updateByPrimaryKey(User record);
/**
* This method was generated by MyBatis Generator.
......@@ -146,7 +146,7 @@ public interface DtsUserMapper {
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int logicalDeleteByExample(@Param("example") DtsUserExample example);
int logicalDeleteByExample(@Param("example") UserExample example);
/**
* This method was generated by MyBatis Generator.
......
......@@ -5,7 +5,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsAccountTrace {
public class AccountTraceObsolete {
/**
*
* This field was generated by MyBatis Generator.
......@@ -447,7 +447,7 @@ public class DtsAccountTrace {
if (getClass() != that.getClass()) {
return false;
}
DtsAccountTrace other = (DtsAccountTrace) that;
AccountTraceObsolete other = (AccountTraceObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getTraceSn() == null ? other.getTraceSn() == null : this.getTraceSn().equals(other.getTraceSn()))
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsAdmin {
public class Admin {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_admin
......@@ -498,7 +498,7 @@ public class DtsAdmin {
if (getClass() != that.getClass()) {
return false;
}
DtsAdmin other = (DtsAdmin) that;
Admin other = (Admin) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getUsername() == null ? other.getUsername() == null : this.getUsername().equals(other.getUsername()))
&& (this.getPassword() == null ? other.getPassword() == null : this.getPassword().equals(other.getPassword()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsCollect {
public class CollectObsolete {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_collect
......@@ -294,7 +294,7 @@ public class DtsCollect {
if (getClass() != that.getClass()) {
return false;
}
DtsCollect other = (DtsCollect) that;
CollectObsolete other = (CollectObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
&& (this.getValueId() == null ? other.getValueId() == null : this.getValueId().equals(other.getValueId()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsFeedback {
public class Feedback {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_feedback
......@@ -464,7 +464,7 @@ public class DtsFeedback {
if (getClass() != that.getClass()) {
return false;
}
DtsFeedback other = (DtsFeedback) that;
Feedback other = (Feedback) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
&& (this.getUsername() == null ? other.getUsername() == null : this.getUsername().equals(other.getUsername()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsFootprint {
public class Footprint {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_footprint
......@@ -260,7 +260,7 @@ public class DtsFootprint {
if (getClass() != that.getClass()) {
return false;
}
DtsFootprint other = (DtsFootprint) that;
Footprint other = (Footprint) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getUserId() == null ? other.getUserId() == null : this.getUserId().equals(other.getUserId()))
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsGoodsAttribute {
public class GoodsAttributeObsolete {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_goods_attribute
......@@ -294,7 +294,7 @@ public class DtsGoodsAttribute {
if (getClass() != that.getClass()) {
return false;
}
DtsGoodsAttribute other = (DtsGoodsAttribute) that;
GoodsAttributeObsolete other = (GoodsAttributeObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId()))
&& (this.getAttribute() == null ? other.getAttribute() == null : this.getAttribute().equals(other.getAttribute()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsCategory {
public class GoodsCategoryObsolete {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_category
......@@ -464,7 +464,7 @@ public class DtsCategory {
if (getClass() != that.getClass()) {
return false;
}
DtsCategory other = (DtsCategory) that;
GoodsCategoryObsolete other = (GoodsCategoryObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
&& (this.getKeywords() == null ? other.getKeywords() == null : this.getKeywords().equals(other.getKeywords()))
......
......@@ -5,7 +5,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsGoods {
public class GoodsObsolete {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_goods
......@@ -1043,7 +1043,7 @@ public class DtsGoods {
if (getClass() != that.getClass()) {
return false;
}
DtsGoods other = (DtsGoods) that;
GoodsObsolete other = (GoodsObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getGoodsSn() == null ? other.getGoodsSn() == null : this.getGoodsSn().equals(other.getGoodsSn()))
&& (this.getName() == null ? other.getName() == null : this.getName().equals(other.getName()))
......
......@@ -5,7 +5,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsGoodsProduct {
public class GoodsProductObsolete {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_goods_product
......@@ -363,7 +363,7 @@ public class DtsGoodsProduct {
if (getClass() != that.getClass()) {
return false;
}
DtsGoodsProduct other = (DtsGoodsProduct) that;
GoodsProductObsolete other = (GoodsProductObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId()))
&& (Arrays.equals(this.getSpecifications(), other.getSpecifications()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsGoodsSpecification {
public class GoodsSpecificationObsolete {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_goods_specification
......@@ -328,7 +328,7 @@ public class DtsGoodsSpecification {
if (getClass() != that.getClass()) {
return false;
}
DtsGoodsSpecification other = (DtsGoodsSpecification) that;
GoodsSpecificationObsolete other = (GoodsSpecificationObsolete) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getGoodsId() == null ? other.getGoodsId() == null : this.getGoodsId().equals(other.getGoodsId()))
&& (this.getSpecification() == null ? other.getSpecification() == null : this.getSpecification().equals(other.getSpecification()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsIssue {
public class Issue {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_issue
......@@ -260,7 +260,7 @@ public class DtsIssue {
if (getClass() != that.getClass()) {
return false;
}
DtsIssue other = (DtsIssue) that;
Issue other = (Issue) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getQuestion() == null ? other.getQuestion() == null : this.getQuestion().equals(other.getQuestion()))
&& (this.getAnswer() == null ? other.getAnswer() == null : this.getAnswer().equals(other.getAnswer()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsKeyword {
public class Keyword {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_keyword
......@@ -362,7 +362,7 @@ public class DtsKeyword {
if (getClass() != that.getClass()) {
return false;
}
DtsKeyword other = (DtsKeyword) that;
Keyword other = (Keyword) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getKeyword() == null ? other.getKeyword() == null : this.getKeyword().equals(other.getKeyword()))
&& (this.getUrl() == null ? other.getUrl() == null : this.getUrl().equals(other.getUrl()))
......
......@@ -4,7 +4,7 @@ import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
public class DtsPermission {
public class Permission {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dts_permission
......@@ -260,7 +260,7 @@ public class DtsPermission {
if (getClass() != that.getClass()) {
return false;
}
DtsPermission other = (DtsPermission) that;
Permission other = (Permission) that;
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
&& (this.getRoleId() == null ? other.getRoleId() == null : this.getRoleId().equals(other.getRoleId()))
&& (this.getPermission() == null ? other.getPermission() == null : this.getPermission().equals(other.getPermission()))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment