长庆项目day2
This commit is contained in:
parent
5f14c3613d
commit
fc9eb49a75
|
@ -31,10 +31,8 @@ public class CqEnterController {
|
||||||
|
|
||||||
@GetMapping("list")
|
@GetMapping("list")
|
||||||
public R find(String operator, String cellId){
|
public R find(String operator, String cellId){
|
||||||
|
|
||||||
System.out.println("cellId = " + cellId);
|
System.out.println("cellId = " + cellId);
|
||||||
|
|
||||||
|
|
||||||
List<FTo> fTo = cqEnterMapper.classifiedQuery(cellId);
|
List<FTo> fTo = cqEnterMapper.classifiedQuery(cellId);
|
||||||
System.out.println(fTo);
|
System.out.println(fTo);
|
||||||
|
|
||||||
|
@ -49,7 +47,7 @@ public class CqEnterController {
|
||||||
firstVos.add(firstVo);
|
firstVos.add(firstVo);
|
||||||
}
|
}
|
||||||
|
|
||||||
return R.ok().put("data", firstVos);
|
return R.ok().put("data", firstVos).put("total", firstVos.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/getPersonType")
|
@GetMapping("/getPersonType")
|
||||||
|
|
|
@ -355,6 +355,12 @@ public class CqMemberController {
|
||||||
@PostMapping("/newVisitor")
|
@PostMapping("/newVisitor")
|
||||||
public R newVisitor(@RequestBody VisitorDto visitorDto) {
|
public R newVisitor(@RequestBody VisitorDto visitorDto) {
|
||||||
|
|
||||||
|
|
||||||
|
if(visitorDto.getMemberId() != null){
|
||||||
|
cqMemberMapper.deleteById(visitorDto.getMemberId());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
TenPersonEntity tenPersonEntity = new TenPersonEntity();
|
TenPersonEntity tenPersonEntity = new TenPersonEntity();
|
||||||
|
|
||||||
long id = new SnowflakeIdWorker().nextId();
|
long id = new SnowflakeIdWorker().nextId();
|
||||||
|
|
|
@ -11,6 +11,8 @@ import java.util.Date;
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
public class VisitorDto extends BaseEntity {
|
public class VisitorDto extends BaseEntity {
|
||||||
|
|
||||||
|
private Integer memberId;
|
||||||
private String orgId;
|
private String orgId;
|
||||||
private String name;
|
private String name;
|
||||||
private Integer sex;
|
private Integer sex;
|
||||||
|
|
|
@ -6,6 +6,7 @@ import net.shapelight.modules.iCq.controller.enter.vo.PeronType;
|
||||||
import net.shapelight.modules.iCq.controller.enter.vo.TypeRules;
|
import net.shapelight.modules.iCq.controller.enter.vo.TypeRules;
|
||||||
import net.shapelight.modules.iCq.dal.dataobject.enter.TenEnterConfigEntity;
|
import net.shapelight.modules.iCq.dal.dataobject.enter.TenEnterConfigEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -13,7 +14,7 @@ import java.util.List;
|
||||||
public interface CqEnterMapper extends BaseMapper<TenEnterConfigEntity> {
|
public interface CqEnterMapper extends BaseMapper<TenEnterConfigEntity> {
|
||||||
|
|
||||||
|
|
||||||
List<FTo> classifiedQuery(String cellId);
|
List<FTo> classifiedQuery(@Param("cellId")String cellId);
|
||||||
|
|
||||||
List<PeronType> getPersonType();
|
List<PeronType> getPersonType();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue