diff --git a/pom.xml b/pom.xml index 18f4e423..3867dc32 100644 --- a/pom.xml +++ b/pom.xml @@ -161,7 +161,7 @@ org.mybatis.generator mybatis-generator-maven-plugin - 1.3.2 + 1.4.0 ${basedir}/src/test/resources/generatorConfig.xml true diff --git a/src/main/java/com/jsh/erp/datasource/entities/DepotHeadExample.java b/src/main/java/com/jsh/erp/datasource/entities/DepotHeadExample.java index 18eac650..83ac7bf9 100644 --- a/src/main/java/com/jsh/erp/datasource/entities/DepotHeadExample.java +++ b/src/main/java/com/jsh/erp/datasource/entities/DepotHeadExample.java @@ -13,7 +13,7 @@ public class DepotHeadExample { protected List oredCriteria; public DepotHeadExample() { - oredCriteria = new ArrayList(); + oredCriteria = new ArrayList<>(); } public void setOrderByClause(String orderByClause) { @@ -70,7 +70,7 @@ public class DepotHeadExample { protected GeneratedCriteria() { super(); - criteria = new ArrayList(); + criteria = new ArrayList<>(); } public boolean isValid() { @@ -2118,7 +2118,6 @@ public class DepotHeadExample { } public static class Criteria extends GeneratedCriteria { - protected Criteria() { super(); } diff --git a/src/main/java/com/jsh/erp/datasource/entities/UserExample.java b/src/main/java/com/jsh/erp/datasource/entities/UserExample.java index 36f35c05..a9cf2c0b 100644 --- a/src/main/java/com/jsh/erp/datasource/entities/UserExample.java +++ b/src/main/java/com/jsh/erp/datasource/entities/UserExample.java @@ -11,7 +11,7 @@ public class UserExample { protected List oredCriteria; public UserExample() { - oredCriteria = new ArrayList(); + oredCriteria = new ArrayList<>(); } public void setOrderByClause(String orderByClause) { @@ -68,7 +68,7 @@ public class UserExample { protected GeneratedCriteria() { super(); - criteria = new ArrayList(); + criteria = new ArrayList<>(); } public boolean isValid() { @@ -1036,7 +1036,6 @@ public class UserExample { } public static class Criteria extends GeneratedCriteria { - protected Criteria() { super(); } diff --git a/src/main/java/com/jsh/erp/datasource/mappers/DepotHeadMapper.java b/src/main/java/com/jsh/erp/datasource/mappers/DepotHeadMapper.java index 88b65337..15201e88 100644 --- a/src/main/java/com/jsh/erp/datasource/mappers/DepotHeadMapper.java +++ b/src/main/java/com/jsh/erp/datasource/mappers/DepotHeadMapper.java @@ -6,7 +6,7 @@ import java.util.List; import org.apache.ibatis.annotations.Param; public interface DepotHeadMapper { - int countByExample(DepotHeadExample example); + long countByExample(DepotHeadExample example); int deleteByExample(DepotHeadExample example); diff --git a/src/main/java/com/jsh/erp/datasource/mappers/UserMapper.java b/src/main/java/com/jsh/erp/datasource/mappers/UserMapper.java index 6f0a8510..a5aef02a 100644 --- a/src/main/java/com/jsh/erp/datasource/mappers/UserMapper.java +++ b/src/main/java/com/jsh/erp/datasource/mappers/UserMapper.java @@ -6,7 +6,7 @@ import java.util.List; import org.apache.ibatis.annotations.Param; public interface UserMapper { - int countByExample(UserExample example); + long countByExample(UserExample example); int deleteByExample(UserExample example); diff --git a/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java b/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java index 9fcad5d3..e5fb636b 100644 --- a/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java +++ b/src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java @@ -464,8 +464,6 @@ public class DepotHeadService { } /** - * create by: cjl - * description: * 新增单据主表及单据子表信息 * create time: 2019/1/25 14:36 * @Param: beanJson @@ -493,15 +491,21 @@ public class DepotHeadService { }catch(Exception e){ JshException.writeFail(logger, e); } - /**入库和出库处理预付款信息*/ if(BusinessConstants.PAY_TYPE_PREPAID.equals(depotHead.getPaytype())){ if(depotHead.getOrganid()!=null) { supplierService.updateAdvanceIn(depotHead.getOrganid(), BigDecimal.ZERO.subtract(depotHead.getTotalprice())); } } - /**入库和出库处理单据子表信息*/ - depotItemService.saveDetials(inserted,deleted,updated,depotHead.getId(),tenantId, request); + //根据单据编号查询单据id + DepotHeadExample dhExample = new DepotHeadExample(); + dhExample.createCriteria().andDefaultnumberEqualTo(depotHead.getDefaultnumber()).andDeleteFlagNotEqualTo(BusinessConstants.DELETE_FLAG_DELETED); + List list = depotHeadMapper.selectByExample(dhExample); + if(list!=null) { + Long headId = list.get(0).getId(); + /**入库和出库处理单据子表信息*/ + depotItemService.saveDetials(inserted,deleted,updated,headId,tenantId, request); + } /**如果关联单据号非空则更新订单的状态为2 */ if(depotHead.getLinknumber()!=null) { DepotHead depotHeadOrders = new DepotHead(); @@ -516,8 +520,6 @@ public class DepotHeadService { } } /** - * create by: cjl - * description: * 更新单据主表及单据子表信息 * create time: 2019/1/28 14:47 * @Param: id diff --git a/src/main/java/com/jsh/erp/service/user/UserService.java b/src/main/java/com/jsh/erp/service/user/UserService.java index 4d7f20dc..dddef5c9 100644 --- a/src/main/java/com/jsh/erp/service/user/UserService.java +++ b/src/main/java/com/jsh/erp/service/user/UserService.java @@ -334,8 +334,14 @@ public class UserService { OrgaUserRel oul=new OrgaUserRel(); //机构id oul.setOrgaId(ue.getOrgaId()); - //用户id - oul.setUserId(ue.getId()); + //用户id,根据用户名查询id + UserExample example = new UserExample(); + example.createCriteria().andLoginameEqualTo(ue.getLoginame()); + List list = userMapper.selectByExample(example); + if(list!=null) { + Long userId = list.get(0).getId(); + oul.setUserId(userId); + } //用户在机构中的排序 oul.setUserBlngOrgaDsplSeq(ue.getUserBlngOrgaDsplSeq()); diff --git a/src/main/resources/mapper_xml/DepotHeadMapper.xml b/src/main/resources/mapper_xml/DepotHeadMapper.xml index 71e7ba82..55d79306 100644 --- a/src/main/resources/mapper_xml/DepotHeadMapper.xml +++ b/src/main/resources/mapper_xml/DepotHeadMapper.xml @@ -1,625 +1,623 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - and ${criterion.condition} - - - and ${criterion.condition} #{criterion.value} - - - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} - - - and ${criterion.condition} - - #{listItem} - - - - - - - - - - - - - - - - - - and ${criterion.condition} - - - and ${criterion.condition} #{criterion.value} - - - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} - - - and ${criterion.condition} - - #{listItem} - - - - - - - - - - - Id, Type, SubType, ProjectId, DefaultNumber, Number, OperPersonName, CreateTime, - OperTime, OrganId, HandsPersonId, AccountId, ChangeAmount, AllocationProjectId, TotalPrice, - PayType, Remark, Salesman, AccountIdList, AccountMoneyList, Discount, DiscountMoney, - DiscountLastMoney, OtherMoney, OtherMoneyList, OtherMoneyItem, AccountDay, Status, - LinkNumber, tenant_id, delete_Flag - - - - - delete from jsh_depothead - where Id = #{id,jdbcType=BIGINT} - - - delete from jsh_depothead - - - - - - - SELECT LAST_INSERT_ID() - - insert into jsh_depothead (Id, Type, SubType, - ProjectId, DefaultNumber, Number, - OperPersonName, CreateTime, OperTime, - OrganId, HandsPersonId, AccountId, - ChangeAmount, AllocationProjectId, TotalPrice, - PayType, Remark, Salesman, - AccountIdList, AccountMoneyList, Discount, - DiscountMoney, DiscountLastMoney, OtherMoney, - OtherMoneyList, OtherMoneyItem, AccountDay, - Status, LinkNumber, tenant_id, - delete_Flag) - values (#{id,jdbcType=BIGINT}, #{type,jdbcType=VARCHAR}, #{subtype,jdbcType=VARCHAR}, - #{projectid,jdbcType=BIGINT}, #{defaultnumber,jdbcType=VARCHAR}, #{number,jdbcType=VARCHAR}, - #{operpersonname,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{opertime,jdbcType=TIMESTAMP}, - #{organid,jdbcType=BIGINT}, #{handspersonid,jdbcType=BIGINT}, #{accountid,jdbcType=BIGINT}, - #{changeamount,jdbcType=DECIMAL}, #{allocationprojectid,jdbcType=BIGINT}, #{totalprice,jdbcType=DECIMAL}, - #{paytype,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{salesman,jdbcType=VARCHAR}, - #{accountidlist,jdbcType=VARCHAR}, #{accountmoneylist,jdbcType=VARCHAR}, #{discount,jdbcType=DECIMAL}, - #{discountmoney,jdbcType=DECIMAL}, #{discountlastmoney,jdbcType=DECIMAL}, #{othermoney,jdbcType=DECIMAL}, - #{othermoneylist,jdbcType=VARCHAR}, #{othermoneyitem,jdbcType=VARCHAR}, #{accountday,jdbcType=INTEGER}, - #{status,jdbcType=VARCHAR}, #{linknumber,jdbcType=VARCHAR}, #{tenantId,jdbcType=BIGINT}, - #{deleteFlag,jdbcType=VARCHAR}) - - - - SELECT LAST_INSERT_ID() - - insert into jsh_depothead - - Id, - - Type, - - - SubType, - - - ProjectId, - - - DefaultNumber, - - - Number, - - - OperPersonName, - - - CreateTime, - - - OperTime, - - - OrganId, - - - HandsPersonId, - - - AccountId, - - - ChangeAmount, - - - AllocationProjectId, - - - TotalPrice, - - - PayType, - - - Remark, - - - Salesman, - - - AccountIdList, - - - AccountMoneyList, - - - Discount, - - - DiscountMoney, - - - DiscountLastMoney, - - - OtherMoney, - - - OtherMoneyList, - - - OtherMoneyItem, - - - AccountDay, - - - Status, - - - LinkNumber, - - - tenant_id, - - - delete_Flag, - - - - #{id,jdbcType=BIGINT}, - - #{type,jdbcType=VARCHAR}, - - - #{subtype,jdbcType=VARCHAR}, - - - #{projectid,jdbcType=BIGINT}, - - - #{defaultnumber,jdbcType=VARCHAR}, - - - #{number,jdbcType=VARCHAR}, - - - #{operpersonname,jdbcType=VARCHAR}, - - - #{createtime,jdbcType=TIMESTAMP}, - - - #{opertime,jdbcType=TIMESTAMP}, - - - #{organid,jdbcType=BIGINT}, - - - #{handspersonid,jdbcType=BIGINT}, - - - #{accountid,jdbcType=BIGINT}, - - - #{changeamount,jdbcType=DECIMAL}, - - - #{allocationprojectid,jdbcType=BIGINT}, - - - #{totalprice,jdbcType=DECIMAL}, - - - #{paytype,jdbcType=VARCHAR}, - - - #{remark,jdbcType=VARCHAR}, - - - #{salesman,jdbcType=VARCHAR}, - - - #{accountidlist,jdbcType=VARCHAR}, - - - #{accountmoneylist,jdbcType=VARCHAR}, - - - #{discount,jdbcType=DECIMAL}, - - - #{discountmoney,jdbcType=DECIMAL}, - - - #{discountlastmoney,jdbcType=DECIMAL}, - - - #{othermoney,jdbcType=DECIMAL}, - - - #{othermoneylist,jdbcType=VARCHAR}, - - - #{othermoneyitem,jdbcType=VARCHAR}, - - - #{accountday,jdbcType=INTEGER}, - - - #{status,jdbcType=VARCHAR}, - - - #{linknumber,jdbcType=VARCHAR}, - - - #{tenantId,jdbcType=BIGINT}, - - - #{deleteFlag,jdbcType=VARCHAR}, - - - - - - update jsh_depothead - - - Id = #{record.id,jdbcType=BIGINT}, - - - Type = #{record.type,jdbcType=VARCHAR}, - - - SubType = #{record.subtype,jdbcType=VARCHAR}, - - - ProjectId = #{record.projectid,jdbcType=BIGINT}, - - - DefaultNumber = #{record.defaultnumber,jdbcType=VARCHAR}, - - - Number = #{record.number,jdbcType=VARCHAR}, - - - OperPersonName = #{record.operpersonname,jdbcType=VARCHAR}, - - - CreateTime = #{record.createtime,jdbcType=TIMESTAMP}, - - - OperTime = #{record.opertime,jdbcType=TIMESTAMP}, - - - OrganId = #{record.organid,jdbcType=BIGINT}, - - - HandsPersonId = #{record.handspersonid,jdbcType=BIGINT}, - - - AccountId = #{record.accountid,jdbcType=BIGINT}, - - - ChangeAmount = #{record.changeamount,jdbcType=DECIMAL}, - - - AllocationProjectId = #{record.allocationprojectid,jdbcType=BIGINT}, - - - TotalPrice = #{record.totalprice,jdbcType=DECIMAL}, - - - PayType = #{record.paytype,jdbcType=VARCHAR}, - - - Remark = #{record.remark,jdbcType=VARCHAR}, - - - Salesman = #{record.salesman,jdbcType=VARCHAR}, - - - AccountIdList = #{record.accountidlist,jdbcType=VARCHAR}, - - - AccountMoneyList = #{record.accountmoneylist,jdbcType=VARCHAR}, - - - Discount = #{record.discount,jdbcType=DECIMAL}, - - - DiscountMoney = #{record.discountmoney,jdbcType=DECIMAL}, - - - DiscountLastMoney = #{record.discountlastmoney,jdbcType=DECIMAL}, - - - OtherMoney = #{record.othermoney,jdbcType=DECIMAL}, - - - OtherMoneyList = #{record.othermoneylist,jdbcType=VARCHAR}, - - - OtherMoneyItem = #{record.othermoneyitem,jdbcType=VARCHAR}, - - - AccountDay = #{record.accountday,jdbcType=INTEGER}, - - - Status = #{record.status,jdbcType=VARCHAR}, - - - LinkNumber = #{record.linknumber,jdbcType=VARCHAR}, - - - tenant_id = #{record.tenantId,jdbcType=BIGINT}, - - - delete_Flag = #{record.deleteFlag,jdbcType=VARCHAR}, - - - - - - - - update jsh_depothead - set Id = #{record.id,jdbcType=BIGINT}, - Type = #{record.type,jdbcType=VARCHAR}, - SubType = #{record.subtype,jdbcType=VARCHAR}, - ProjectId = #{record.projectid,jdbcType=BIGINT}, - DefaultNumber = #{record.defaultnumber,jdbcType=VARCHAR}, - Number = #{record.number,jdbcType=VARCHAR}, - OperPersonName = #{record.operpersonname,jdbcType=VARCHAR}, - CreateTime = #{record.createtime,jdbcType=TIMESTAMP}, - OperTime = #{record.opertime,jdbcType=TIMESTAMP}, - OrganId = #{record.organid,jdbcType=BIGINT}, - HandsPersonId = #{record.handspersonid,jdbcType=BIGINT}, - AccountId = #{record.accountid,jdbcType=BIGINT}, - ChangeAmount = #{record.changeamount,jdbcType=DECIMAL}, - AllocationProjectId = #{record.allocationprojectid,jdbcType=BIGINT}, - TotalPrice = #{record.totalprice,jdbcType=DECIMAL}, - PayType = #{record.paytype,jdbcType=VARCHAR}, - Remark = #{record.remark,jdbcType=VARCHAR}, - Salesman = #{record.salesman,jdbcType=VARCHAR}, - AccountIdList = #{record.accountidlist,jdbcType=VARCHAR}, - AccountMoneyList = #{record.accountmoneylist,jdbcType=VARCHAR}, - Discount = #{record.discount,jdbcType=DECIMAL}, - DiscountMoney = #{record.discountmoney,jdbcType=DECIMAL}, - DiscountLastMoney = #{record.discountlastmoney,jdbcType=DECIMAL}, - OtherMoney = #{record.othermoney,jdbcType=DECIMAL}, - OtherMoneyList = #{record.othermoneylist,jdbcType=VARCHAR}, - OtherMoneyItem = #{record.othermoneyitem,jdbcType=VARCHAR}, - AccountDay = #{record.accountday,jdbcType=INTEGER}, - Status = #{record.status,jdbcType=VARCHAR}, - LinkNumber = #{record.linknumber,jdbcType=VARCHAR}, - tenant_id = #{record.tenantId,jdbcType=BIGINT}, - delete_Flag = #{record.deleteFlag,jdbcType=VARCHAR} - - - - - - update jsh_depothead - - - Type = #{type,jdbcType=VARCHAR}, - - - SubType = #{subtype,jdbcType=VARCHAR}, - - - ProjectId = #{projectid,jdbcType=BIGINT}, - - - DefaultNumber = #{defaultnumber,jdbcType=VARCHAR}, - - - Number = #{number,jdbcType=VARCHAR}, - - - OperPersonName = #{operpersonname,jdbcType=VARCHAR}, - - - CreateTime = #{createtime,jdbcType=TIMESTAMP}, - - - OperTime = #{opertime,jdbcType=TIMESTAMP}, - - - OrganId = #{organid,jdbcType=BIGINT}, - - - HandsPersonId = #{handspersonid,jdbcType=BIGINT}, - - - AccountId = #{accountid,jdbcType=BIGINT}, - - - ChangeAmount = #{changeamount,jdbcType=DECIMAL}, - - - AllocationProjectId = #{allocationprojectid,jdbcType=BIGINT}, - - - TotalPrice = #{totalprice,jdbcType=DECIMAL}, - - - PayType = #{paytype,jdbcType=VARCHAR}, - - - Remark = #{remark,jdbcType=VARCHAR}, - - - Salesman = #{salesman,jdbcType=VARCHAR}, - - - AccountIdList = #{accountidlist,jdbcType=VARCHAR}, - - - AccountMoneyList = #{accountmoneylist,jdbcType=VARCHAR}, - - - Discount = #{discount,jdbcType=DECIMAL}, - - - DiscountMoney = #{discountmoney,jdbcType=DECIMAL}, - - - DiscountLastMoney = #{discountlastmoney,jdbcType=DECIMAL}, - - - OtherMoney = #{othermoney,jdbcType=DECIMAL}, - - - OtherMoneyList = #{othermoneylist,jdbcType=VARCHAR}, - - - OtherMoneyItem = #{othermoneyitem,jdbcType=VARCHAR}, - - - AccountDay = #{accountday,jdbcType=INTEGER}, - - - Status = #{status,jdbcType=VARCHAR}, - - - LinkNumber = #{linknumber,jdbcType=VARCHAR}, - - - tenant_id = #{tenantId,jdbcType=BIGINT}, - - - delete_Flag = #{deleteFlag,jdbcType=VARCHAR}, - - - where Id = #{id,jdbcType=BIGINT} - - - update jsh_depothead - set Type = #{type,jdbcType=VARCHAR}, - SubType = #{subtype,jdbcType=VARCHAR}, - ProjectId = #{projectid,jdbcType=BIGINT}, - DefaultNumber = #{defaultnumber,jdbcType=VARCHAR}, - Number = #{number,jdbcType=VARCHAR}, - OperPersonName = #{operpersonname,jdbcType=VARCHAR}, - CreateTime = #{createtime,jdbcType=TIMESTAMP}, - OperTime = #{opertime,jdbcType=TIMESTAMP}, - OrganId = #{organid,jdbcType=BIGINT}, - HandsPersonId = #{handspersonid,jdbcType=BIGINT}, - AccountId = #{accountid,jdbcType=BIGINT}, - ChangeAmount = #{changeamount,jdbcType=DECIMAL}, - AllocationProjectId = #{allocationprojectid,jdbcType=BIGINT}, - TotalPrice = #{totalprice,jdbcType=DECIMAL}, - PayType = #{paytype,jdbcType=VARCHAR}, - Remark = #{remark,jdbcType=VARCHAR}, - Salesman = #{salesman,jdbcType=VARCHAR}, - AccountIdList = #{accountidlist,jdbcType=VARCHAR}, - AccountMoneyList = #{accountmoneylist,jdbcType=VARCHAR}, - Discount = #{discount,jdbcType=DECIMAL}, - DiscountMoney = #{discountmoney,jdbcType=DECIMAL}, - DiscountLastMoney = #{discountlastmoney,jdbcType=DECIMAL}, - OtherMoney = #{othermoney,jdbcType=DECIMAL}, - OtherMoneyList = #{othermoneylist,jdbcType=VARCHAR}, - OtherMoneyItem = #{othermoneyitem,jdbcType=VARCHAR}, - AccountDay = #{accountday,jdbcType=INTEGER}, - Status = #{status,jdbcType=VARCHAR}, - LinkNumber = #{linknumber,jdbcType=VARCHAR}, - tenant_id = #{tenantId,jdbcType=BIGINT}, - delete_Flag = #{deleteFlag,jdbcType=VARCHAR} - where Id = #{id,jdbcType=BIGINT} - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + and ${criterion.condition} + + + and ${criterion.condition} #{criterion.value} + + + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + + + and ${criterion.condition} + + #{listItem} + + + + + + + + + + + + + + + + + + and ${criterion.condition} + + + and ${criterion.condition} #{criterion.value} + + + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + + + and ${criterion.condition} + + #{listItem} + + + + + + + + + + + Id, Type, SubType, ProjectId, DefaultNumber, Number, OperPersonName, CreateTime, + OperTime, OrganId, HandsPersonId, AccountId, ChangeAmount, AllocationProjectId, TotalPrice, + PayType, Remark, Salesman, AccountIdList, AccountMoneyList, Discount, DiscountMoney, + DiscountLastMoney, OtherMoney, OtherMoneyList, OtherMoneyItem, AccountDay, Status, + LinkNumber, tenant_id, delete_Flag + + + + + delete from jsh_depothead + where Id = #{id,jdbcType=BIGINT} + + + delete from jsh_depothead + + + + + + insert into jsh_depothead (Id, Type, SubType, + ProjectId, DefaultNumber, Number, + OperPersonName, CreateTime, OperTime, + OrganId, HandsPersonId, AccountId, + ChangeAmount, AllocationProjectId, TotalPrice, + PayType, Remark, Salesman, + AccountIdList, AccountMoneyList, Discount, + DiscountMoney, DiscountLastMoney, OtherMoney, + OtherMoneyList, OtherMoneyItem, AccountDay, + Status, LinkNumber, tenant_id, + delete_Flag) + values (#{id,jdbcType=BIGINT}, #{type,jdbcType=VARCHAR}, #{subtype,jdbcType=VARCHAR}, + #{projectid,jdbcType=BIGINT}, #{defaultnumber,jdbcType=VARCHAR}, #{number,jdbcType=VARCHAR}, + #{operpersonname,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{opertime,jdbcType=TIMESTAMP}, + #{organid,jdbcType=BIGINT}, #{handspersonid,jdbcType=BIGINT}, #{accountid,jdbcType=BIGINT}, + #{changeamount,jdbcType=DECIMAL}, #{allocationprojectid,jdbcType=BIGINT}, #{totalprice,jdbcType=DECIMAL}, + #{paytype,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{salesman,jdbcType=VARCHAR}, + #{accountidlist,jdbcType=VARCHAR}, #{accountmoneylist,jdbcType=VARCHAR}, #{discount,jdbcType=DECIMAL}, + #{discountmoney,jdbcType=DECIMAL}, #{discountlastmoney,jdbcType=DECIMAL}, #{othermoney,jdbcType=DECIMAL}, + #{othermoneylist,jdbcType=VARCHAR}, #{othermoneyitem,jdbcType=VARCHAR}, #{accountday,jdbcType=INTEGER}, + #{status,jdbcType=VARCHAR}, #{linknumber,jdbcType=VARCHAR}, #{tenantId,jdbcType=BIGINT}, + #{deleteFlag,jdbcType=VARCHAR}) + + + insert into jsh_depothead + + + Id, + + + Type, + + + SubType, + + + ProjectId, + + + DefaultNumber, + + + Number, + + + OperPersonName, + + + CreateTime, + + + OperTime, + + + OrganId, + + + HandsPersonId, + + + AccountId, + + + ChangeAmount, + + + AllocationProjectId, + + + TotalPrice, + + + PayType, + + + Remark, + + + Salesman, + + + AccountIdList, + + + AccountMoneyList, + + + Discount, + + + DiscountMoney, + + + DiscountLastMoney, + + + OtherMoney, + + + OtherMoneyList, + + + OtherMoneyItem, + + + AccountDay, + + + Status, + + + LinkNumber, + + + tenant_id, + + + delete_Flag, + + + + + #{id,jdbcType=BIGINT}, + + + #{type,jdbcType=VARCHAR}, + + + #{subtype,jdbcType=VARCHAR}, + + + #{projectid,jdbcType=BIGINT}, + + + #{defaultnumber,jdbcType=VARCHAR}, + + + #{number,jdbcType=VARCHAR}, + + + #{operpersonname,jdbcType=VARCHAR}, + + + #{createtime,jdbcType=TIMESTAMP}, + + + #{opertime,jdbcType=TIMESTAMP}, + + + #{organid,jdbcType=BIGINT}, + + + #{handspersonid,jdbcType=BIGINT}, + + + #{accountid,jdbcType=BIGINT}, + + + #{changeamount,jdbcType=DECIMAL}, + + + #{allocationprojectid,jdbcType=BIGINT}, + + + #{totalprice,jdbcType=DECIMAL}, + + + #{paytype,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{salesman,jdbcType=VARCHAR}, + + + #{accountidlist,jdbcType=VARCHAR}, + + + #{accountmoneylist,jdbcType=VARCHAR}, + + + #{discount,jdbcType=DECIMAL}, + + + #{discountmoney,jdbcType=DECIMAL}, + + + #{discountlastmoney,jdbcType=DECIMAL}, + + + #{othermoney,jdbcType=DECIMAL}, + + + #{othermoneylist,jdbcType=VARCHAR}, + + + #{othermoneyitem,jdbcType=VARCHAR}, + + + #{accountday,jdbcType=INTEGER}, + + + #{status,jdbcType=VARCHAR}, + + + #{linknumber,jdbcType=VARCHAR}, + + + #{tenantId,jdbcType=BIGINT}, + + + #{deleteFlag,jdbcType=VARCHAR}, + + + + + + update jsh_depothead + + + Id = #{record.id,jdbcType=BIGINT}, + + + Type = #{record.type,jdbcType=VARCHAR}, + + + SubType = #{record.subtype,jdbcType=VARCHAR}, + + + ProjectId = #{record.projectid,jdbcType=BIGINT}, + + + DefaultNumber = #{record.defaultnumber,jdbcType=VARCHAR}, + + + Number = #{record.number,jdbcType=VARCHAR}, + + + OperPersonName = #{record.operpersonname,jdbcType=VARCHAR}, + + + CreateTime = #{record.createtime,jdbcType=TIMESTAMP}, + + + OperTime = #{record.opertime,jdbcType=TIMESTAMP}, + + + OrganId = #{record.organid,jdbcType=BIGINT}, + + + HandsPersonId = #{record.handspersonid,jdbcType=BIGINT}, + + + AccountId = #{record.accountid,jdbcType=BIGINT}, + + + ChangeAmount = #{record.changeamount,jdbcType=DECIMAL}, + + + AllocationProjectId = #{record.allocationprojectid,jdbcType=BIGINT}, + + + TotalPrice = #{record.totalprice,jdbcType=DECIMAL}, + + + PayType = #{record.paytype,jdbcType=VARCHAR}, + + + Remark = #{record.remark,jdbcType=VARCHAR}, + + + Salesman = #{record.salesman,jdbcType=VARCHAR}, + + + AccountIdList = #{record.accountidlist,jdbcType=VARCHAR}, + + + AccountMoneyList = #{record.accountmoneylist,jdbcType=VARCHAR}, + + + Discount = #{record.discount,jdbcType=DECIMAL}, + + + DiscountMoney = #{record.discountmoney,jdbcType=DECIMAL}, + + + DiscountLastMoney = #{record.discountlastmoney,jdbcType=DECIMAL}, + + + OtherMoney = #{record.othermoney,jdbcType=DECIMAL}, + + + OtherMoneyList = #{record.othermoneylist,jdbcType=VARCHAR}, + + + OtherMoneyItem = #{record.othermoneyitem,jdbcType=VARCHAR}, + + + AccountDay = #{record.accountday,jdbcType=INTEGER}, + + + Status = #{record.status,jdbcType=VARCHAR}, + + + LinkNumber = #{record.linknumber,jdbcType=VARCHAR}, + + + tenant_id = #{record.tenantId,jdbcType=BIGINT}, + + + delete_Flag = #{record.deleteFlag,jdbcType=VARCHAR}, + + + + + + + + update jsh_depothead + set Id = #{record.id,jdbcType=BIGINT}, + Type = #{record.type,jdbcType=VARCHAR}, + SubType = #{record.subtype,jdbcType=VARCHAR}, + ProjectId = #{record.projectid,jdbcType=BIGINT}, + DefaultNumber = #{record.defaultnumber,jdbcType=VARCHAR}, + Number = #{record.number,jdbcType=VARCHAR}, + OperPersonName = #{record.operpersonname,jdbcType=VARCHAR}, + CreateTime = #{record.createtime,jdbcType=TIMESTAMP}, + OperTime = #{record.opertime,jdbcType=TIMESTAMP}, + OrganId = #{record.organid,jdbcType=BIGINT}, + HandsPersonId = #{record.handspersonid,jdbcType=BIGINT}, + AccountId = #{record.accountid,jdbcType=BIGINT}, + ChangeAmount = #{record.changeamount,jdbcType=DECIMAL}, + AllocationProjectId = #{record.allocationprojectid,jdbcType=BIGINT}, + TotalPrice = #{record.totalprice,jdbcType=DECIMAL}, + PayType = #{record.paytype,jdbcType=VARCHAR}, + Remark = #{record.remark,jdbcType=VARCHAR}, + Salesman = #{record.salesman,jdbcType=VARCHAR}, + AccountIdList = #{record.accountidlist,jdbcType=VARCHAR}, + AccountMoneyList = #{record.accountmoneylist,jdbcType=VARCHAR}, + Discount = #{record.discount,jdbcType=DECIMAL}, + DiscountMoney = #{record.discountmoney,jdbcType=DECIMAL}, + DiscountLastMoney = #{record.discountlastmoney,jdbcType=DECIMAL}, + OtherMoney = #{record.othermoney,jdbcType=DECIMAL}, + OtherMoneyList = #{record.othermoneylist,jdbcType=VARCHAR}, + OtherMoneyItem = #{record.othermoneyitem,jdbcType=VARCHAR}, + AccountDay = #{record.accountday,jdbcType=INTEGER}, + Status = #{record.status,jdbcType=VARCHAR}, + LinkNumber = #{record.linknumber,jdbcType=VARCHAR}, + tenant_id = #{record.tenantId,jdbcType=BIGINT}, + delete_Flag = #{record.deleteFlag,jdbcType=VARCHAR} + + + + + + update jsh_depothead + + + Type = #{type,jdbcType=VARCHAR}, + + + SubType = #{subtype,jdbcType=VARCHAR}, + + + ProjectId = #{projectid,jdbcType=BIGINT}, + + + DefaultNumber = #{defaultnumber,jdbcType=VARCHAR}, + + + Number = #{number,jdbcType=VARCHAR}, + + + OperPersonName = #{operpersonname,jdbcType=VARCHAR}, + + + CreateTime = #{createtime,jdbcType=TIMESTAMP}, + + + OperTime = #{opertime,jdbcType=TIMESTAMP}, + + + OrganId = #{organid,jdbcType=BIGINT}, + + + HandsPersonId = #{handspersonid,jdbcType=BIGINT}, + + + AccountId = #{accountid,jdbcType=BIGINT}, + + + ChangeAmount = #{changeamount,jdbcType=DECIMAL}, + + + AllocationProjectId = #{allocationprojectid,jdbcType=BIGINT}, + + + TotalPrice = #{totalprice,jdbcType=DECIMAL}, + + + PayType = #{paytype,jdbcType=VARCHAR}, + + + Remark = #{remark,jdbcType=VARCHAR}, + + + Salesman = #{salesman,jdbcType=VARCHAR}, + + + AccountIdList = #{accountidlist,jdbcType=VARCHAR}, + + + AccountMoneyList = #{accountmoneylist,jdbcType=VARCHAR}, + + + Discount = #{discount,jdbcType=DECIMAL}, + + + DiscountMoney = #{discountmoney,jdbcType=DECIMAL}, + + + DiscountLastMoney = #{discountlastmoney,jdbcType=DECIMAL}, + + + OtherMoney = #{othermoney,jdbcType=DECIMAL}, + + + OtherMoneyList = #{othermoneylist,jdbcType=VARCHAR}, + + + OtherMoneyItem = #{othermoneyitem,jdbcType=VARCHAR}, + + + AccountDay = #{accountday,jdbcType=INTEGER}, + + + Status = #{status,jdbcType=VARCHAR}, + + + LinkNumber = #{linknumber,jdbcType=VARCHAR}, + + + tenant_id = #{tenantId,jdbcType=BIGINT}, + + + delete_Flag = #{deleteFlag,jdbcType=VARCHAR}, + + + where Id = #{id,jdbcType=BIGINT} + + + update jsh_depothead + set Type = #{type,jdbcType=VARCHAR}, + SubType = #{subtype,jdbcType=VARCHAR}, + ProjectId = #{projectid,jdbcType=BIGINT}, + DefaultNumber = #{defaultnumber,jdbcType=VARCHAR}, + Number = #{number,jdbcType=VARCHAR}, + OperPersonName = #{operpersonname,jdbcType=VARCHAR}, + CreateTime = #{createtime,jdbcType=TIMESTAMP}, + OperTime = #{opertime,jdbcType=TIMESTAMP}, + OrganId = #{organid,jdbcType=BIGINT}, + HandsPersonId = #{handspersonid,jdbcType=BIGINT}, + AccountId = #{accountid,jdbcType=BIGINT}, + ChangeAmount = #{changeamount,jdbcType=DECIMAL}, + AllocationProjectId = #{allocationprojectid,jdbcType=BIGINT}, + TotalPrice = #{totalprice,jdbcType=DECIMAL}, + PayType = #{paytype,jdbcType=VARCHAR}, + Remark = #{remark,jdbcType=VARCHAR}, + Salesman = #{salesman,jdbcType=VARCHAR}, + AccountIdList = #{accountidlist,jdbcType=VARCHAR}, + AccountMoneyList = #{accountmoneylist,jdbcType=VARCHAR}, + Discount = #{discount,jdbcType=DECIMAL}, + DiscountMoney = #{discountmoney,jdbcType=DECIMAL}, + DiscountLastMoney = #{discountlastmoney,jdbcType=DECIMAL}, + OtherMoney = #{othermoney,jdbcType=DECIMAL}, + OtherMoneyList = #{othermoneylist,jdbcType=VARCHAR}, + OtherMoneyItem = #{othermoneyitem,jdbcType=VARCHAR}, + AccountDay = #{accountday,jdbcType=INTEGER}, + Status = #{status,jdbcType=VARCHAR}, + LinkNumber = #{linknumber,jdbcType=VARCHAR}, + tenant_id = #{tenantId,jdbcType=BIGINT}, + delete_Flag = #{deleteFlag,jdbcType=VARCHAR} + where Id = #{id,jdbcType=BIGINT} + \ No newline at end of file diff --git a/src/main/resources/mapper_xml/UserMapper.xml b/src/main/resources/mapper_xml/UserMapper.xml index 943a8ec5..f960b482 100644 --- a/src/main/resources/mapper_xml/UserMapper.xml +++ b/src/main/resources/mapper_xml/UserMapper.xml @@ -1,355 +1,353 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - and ${criterion.condition} - - - and ${criterion.condition} #{criterion.value} - - - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} - - - and ${criterion.condition} - - #{listItem} - - - - - - - - - - - - - - - - - - and ${criterion.condition} - - - and ${criterion.condition} #{criterion.value} - - - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} - - - and ${criterion.condition} - - #{listItem} - - - - - - - - - - - id, username, loginame, password, position, department, email, phonenum, ismanager, - isystem, Status, description, remark, tenant_id - - - - - delete from jsh_user - where id = #{id,jdbcType=BIGINT} - - - delete from jsh_user - - - - - - - SELECT LAST_INSERT_ID() - - insert into jsh_user (id, username, loginame, - password, position, department, - email, phonenum, ismanager, - isystem, Status, description, - remark, tenant_id) - values (#{id,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}, #{loginame,jdbcType=VARCHAR}, - #{password,jdbcType=VARCHAR}, #{position,jdbcType=VARCHAR}, #{department,jdbcType=VARCHAR}, - #{email,jdbcType=VARCHAR}, #{phonenum,jdbcType=VARCHAR}, #{ismanager,jdbcType=TINYINT}, - #{isystem,jdbcType=TINYINT}, #{status,jdbcType=TINYINT}, #{description,jdbcType=VARCHAR}, - #{remark,jdbcType=VARCHAR}, #{tenantId,jdbcType=BIGINT}) - - - - SELECT LAST_INSERT_ID() - - insert into jsh_user - - id, - - username, - - - loginame, - - - password, - - - position, - - - department, - - - email, - - - phonenum, - - - ismanager, - - - isystem, - - - Status, - - - description, - - - remark, - - - tenant_id, - - - - #{id,jdbcType=BIGINT}, - - #{username,jdbcType=VARCHAR}, - - - #{loginame,jdbcType=VARCHAR}, - - - #{password,jdbcType=VARCHAR}, - - - #{position,jdbcType=VARCHAR}, - - - #{department,jdbcType=VARCHAR}, - - - #{email,jdbcType=VARCHAR}, - - - #{phonenum,jdbcType=VARCHAR}, - - - #{ismanager,jdbcType=TINYINT}, - - - #{isystem,jdbcType=TINYINT}, - - - #{status,jdbcType=TINYINT}, - - - #{description,jdbcType=VARCHAR}, - - - #{remark,jdbcType=VARCHAR}, - - - #{tenantId,jdbcType=BIGINT}, - - - - - - update jsh_user - - - id = #{record.id,jdbcType=BIGINT}, - - - username = #{record.username,jdbcType=VARCHAR}, - - - loginame = #{record.loginame,jdbcType=VARCHAR}, - - - password = #{record.password,jdbcType=VARCHAR}, - - - position = #{record.position,jdbcType=VARCHAR}, - - - department = #{record.department,jdbcType=VARCHAR}, - - - email = #{record.email,jdbcType=VARCHAR}, - - - phonenum = #{record.phonenum,jdbcType=VARCHAR}, - - - ismanager = #{record.ismanager,jdbcType=TINYINT}, - - - isystem = #{record.isystem,jdbcType=TINYINT}, - - - Status = #{record.status,jdbcType=TINYINT}, - - - description = #{record.description,jdbcType=VARCHAR}, - - - remark = #{record.remark,jdbcType=VARCHAR}, - - - tenant_id = #{record.tenantId,jdbcType=BIGINT}, - - - - - - - - update jsh_user - set id = #{record.id,jdbcType=BIGINT}, - username = #{record.username,jdbcType=VARCHAR}, - loginame = #{record.loginame,jdbcType=VARCHAR}, - password = #{record.password,jdbcType=VARCHAR}, - position = #{record.position,jdbcType=VARCHAR}, - department = #{record.department,jdbcType=VARCHAR}, - email = #{record.email,jdbcType=VARCHAR}, - phonenum = #{record.phonenum,jdbcType=VARCHAR}, - ismanager = #{record.ismanager,jdbcType=TINYINT}, - isystem = #{record.isystem,jdbcType=TINYINT}, - Status = #{record.status,jdbcType=TINYINT}, - description = #{record.description,jdbcType=VARCHAR}, - remark = #{record.remark,jdbcType=VARCHAR}, - tenant_id = #{record.tenantId,jdbcType=BIGINT} - - - - - - update jsh_user - - - username = #{username,jdbcType=VARCHAR}, - - - loginame = #{loginame,jdbcType=VARCHAR}, - - - password = #{password,jdbcType=VARCHAR}, - - - position = #{position,jdbcType=VARCHAR}, - - - department = #{department,jdbcType=VARCHAR}, - - - email = #{email,jdbcType=VARCHAR}, - - - phonenum = #{phonenum,jdbcType=VARCHAR}, - - - ismanager = #{ismanager,jdbcType=TINYINT}, - - - isystem = #{isystem,jdbcType=TINYINT}, - - - Status = #{status,jdbcType=TINYINT}, - - - description = #{description,jdbcType=VARCHAR}, - - - remark = #{remark,jdbcType=VARCHAR}, - - - tenant_id = #{tenantId,jdbcType=BIGINT}, - - - where id = #{id,jdbcType=BIGINT} - - - update jsh_user - set username = #{username,jdbcType=VARCHAR}, - loginame = #{loginame,jdbcType=VARCHAR}, - password = #{password,jdbcType=VARCHAR}, - position = #{position,jdbcType=VARCHAR}, - department = #{department,jdbcType=VARCHAR}, - email = #{email,jdbcType=VARCHAR}, - phonenum = #{phonenum,jdbcType=VARCHAR}, - ismanager = #{ismanager,jdbcType=TINYINT}, - isystem = #{isystem,jdbcType=TINYINT}, - Status = #{status,jdbcType=TINYINT}, - description = #{description,jdbcType=VARCHAR}, - remark = #{remark,jdbcType=VARCHAR}, - tenant_id = #{tenantId,jdbcType=BIGINT} - where id = #{id,jdbcType=BIGINT} - + + + + + + + + + + + + + + + + + + + + + + + + + + and ${criterion.condition} + + + and ${criterion.condition} #{criterion.value} + + + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + + + and ${criterion.condition} + + #{listItem} + + + + + + + + + + + + + + + + + + and ${criterion.condition} + + + and ${criterion.condition} #{criterion.value} + + + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + + + and ${criterion.condition} + + #{listItem} + + + + + + + + + + + id, username, loginame, password, position, department, email, phonenum, ismanager, + isystem, Status, description, remark, tenant_id + + + + + delete from jsh_user + where id = #{id,jdbcType=BIGINT} + + + delete from jsh_user + + + + + + insert into jsh_user (id, username, loginame, + password, position, department, + email, phonenum, ismanager, + isystem, Status, description, + remark, tenant_id) + values (#{id,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}, #{loginame,jdbcType=VARCHAR}, + #{password,jdbcType=VARCHAR}, #{position,jdbcType=VARCHAR}, #{department,jdbcType=VARCHAR}, + #{email,jdbcType=VARCHAR}, #{phonenum,jdbcType=VARCHAR}, #{ismanager,jdbcType=TINYINT}, + #{isystem,jdbcType=TINYINT}, #{status,jdbcType=TINYINT}, #{description,jdbcType=VARCHAR}, + #{remark,jdbcType=VARCHAR}, #{tenantId,jdbcType=BIGINT}) + + + insert into jsh_user + + + id, + + + username, + + + loginame, + + + password, + + + position, + + + department, + + + email, + + + phonenum, + + + ismanager, + + + isystem, + + + Status, + + + description, + + + remark, + + + tenant_id, + + + + + #{id,jdbcType=BIGINT}, + + + #{username,jdbcType=VARCHAR}, + + + #{loginame,jdbcType=VARCHAR}, + + + #{password,jdbcType=VARCHAR}, + + + #{position,jdbcType=VARCHAR}, + + + #{department,jdbcType=VARCHAR}, + + + #{email,jdbcType=VARCHAR}, + + + #{phonenum,jdbcType=VARCHAR}, + + + #{ismanager,jdbcType=TINYINT}, + + + #{isystem,jdbcType=TINYINT}, + + + #{status,jdbcType=TINYINT}, + + + #{description,jdbcType=VARCHAR}, + + + #{remark,jdbcType=VARCHAR}, + + + #{tenantId,jdbcType=BIGINT}, + + + + + + update jsh_user + + + id = #{record.id,jdbcType=BIGINT}, + + + username = #{record.username,jdbcType=VARCHAR}, + + + loginame = #{record.loginame,jdbcType=VARCHAR}, + + + password = #{record.password,jdbcType=VARCHAR}, + + + position = #{record.position,jdbcType=VARCHAR}, + + + department = #{record.department,jdbcType=VARCHAR}, + + + email = #{record.email,jdbcType=VARCHAR}, + + + phonenum = #{record.phonenum,jdbcType=VARCHAR}, + + + ismanager = #{record.ismanager,jdbcType=TINYINT}, + + + isystem = #{record.isystem,jdbcType=TINYINT}, + + + Status = #{record.status,jdbcType=TINYINT}, + + + description = #{record.description,jdbcType=VARCHAR}, + + + remark = #{record.remark,jdbcType=VARCHAR}, + + + tenant_id = #{record.tenantId,jdbcType=BIGINT}, + + + + + + + + update jsh_user + set id = #{record.id,jdbcType=BIGINT}, + username = #{record.username,jdbcType=VARCHAR}, + loginame = #{record.loginame,jdbcType=VARCHAR}, + password = #{record.password,jdbcType=VARCHAR}, + position = #{record.position,jdbcType=VARCHAR}, + department = #{record.department,jdbcType=VARCHAR}, + email = #{record.email,jdbcType=VARCHAR}, + phonenum = #{record.phonenum,jdbcType=VARCHAR}, + ismanager = #{record.ismanager,jdbcType=TINYINT}, + isystem = #{record.isystem,jdbcType=TINYINT}, + Status = #{record.status,jdbcType=TINYINT}, + description = #{record.description,jdbcType=VARCHAR}, + remark = #{record.remark,jdbcType=VARCHAR}, + tenant_id = #{record.tenantId,jdbcType=BIGINT} + + + + + + update jsh_user + + + username = #{username,jdbcType=VARCHAR}, + + + loginame = #{loginame,jdbcType=VARCHAR}, + + + password = #{password,jdbcType=VARCHAR}, + + + position = #{position,jdbcType=VARCHAR}, + + + department = #{department,jdbcType=VARCHAR}, + + + email = #{email,jdbcType=VARCHAR}, + + + phonenum = #{phonenum,jdbcType=VARCHAR}, + + + ismanager = #{ismanager,jdbcType=TINYINT}, + + + isystem = #{isystem,jdbcType=TINYINT}, + + + Status = #{status,jdbcType=TINYINT}, + + + description = #{description,jdbcType=VARCHAR}, + + + remark = #{remark,jdbcType=VARCHAR}, + + + tenant_id = #{tenantId,jdbcType=BIGINT}, + + + where id = #{id,jdbcType=BIGINT} + + + update jsh_user + set username = #{username,jdbcType=VARCHAR}, + loginame = #{loginame,jdbcType=VARCHAR}, + password = #{password,jdbcType=VARCHAR}, + position = #{position,jdbcType=VARCHAR}, + department = #{department,jdbcType=VARCHAR}, + email = #{email,jdbcType=VARCHAR}, + phonenum = #{phonenum,jdbcType=VARCHAR}, + ismanager = #{ismanager,jdbcType=TINYINT}, + isystem = #{isystem,jdbcType=TINYINT}, + Status = #{status,jdbcType=TINYINT}, + description = #{description,jdbcType=VARCHAR}, + remark = #{remark,jdbcType=VARCHAR}, + tenant_id = #{tenantId,jdbcType=BIGINT} + where id = #{id,jdbcType=BIGINT} + \ No newline at end of file diff --git a/src/test/resources/generatorConfig.xml b/src/test/resources/generatorConfig.xml index 7972bf64..7d8d14a7 100644 --- a/src/test/resources/generatorConfig.xml +++ b/src/test/resources/generatorConfig.xml @@ -37,7 +37,7 @@ + targetProject="src\main\java"> @@ -45,9 +45,7 @@
- - -
+
@@ -61,9 +59,7 @@
- - -
+