60 changed files with 10890 additions and 3 deletions
@ -0,0 +1,54 @@ |
|||
package com.ccsens.wisdomcar.api; |
|||
|
|||
import com.ccsens.util.JsonResponse; |
|||
import com.ccsens.util.bean.dto.QueryDto; |
|||
import com.ccsens.wisdomcar.bean.dto.OtherRecordsDto; |
|||
import com.ccsens.wisdomcar.bean.dto.RecordDto; |
|||
import com.ccsens.wisdomcar.bean.vo.OtherRecordsVo; |
|||
import com.ccsens.wisdomcar.bean.vo.RecordVo; |
|||
import com.ccsens.wisdomcar.service.IOtherRecordsService; |
|||
import com.ccsens.wisdomcar.service.IRecordService; |
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import io.swagger.annotations.ApiParam; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.validation.annotation.Validated; |
|||
import org.springframework.web.bind.annotation.RequestBody; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RequestMethod; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import javax.annotation.Resource; |
|||
import java.util.List; |
|||
|
|||
@Slf4j |
|||
@Api(tags = "上传图片和记录" , description = "") |
|||
@RestController |
|||
@RequestMapping("/otherRecords") |
|||
public class OtherRecordsController { |
|||
|
|||
|
|||
@Resource |
|||
private IOtherRecordsService iOtherRecordsService; |
|||
|
|||
@ApiOperation(value = "上传图片和记录", notes = "") |
|||
@RequestMapping(value = "/upload", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|||
public JsonResponse upload(@ApiParam @Validated @RequestBody QueryDto<OtherRecordsDto.PicturesAndRecords> params){ |
|||
log.info("上传图片和记录:{}", params); |
|||
iOtherRecordsService.upload(params.getParam()); |
|||
log.info("上传图片和记录成功"); |
|||
return JsonResponse.newInstance().ok(); |
|||
} |
|||
|
|||
|
|||
@ApiOperation(value = "查询上传图片和记录", notes = "") |
|||
@RequestMapping(value = "/query", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|||
public JsonResponse<List<OtherRecordsVo.Query>> query(@ApiParam @Validated @RequestBody QueryDto<OtherRecordsDto.Query> params){ |
|||
log.info("查询上传图片和记录:{}", params); |
|||
List<OtherRecordsVo.Query> list = iOtherRecordsService.query(params.getParam()); |
|||
log.info("查询上传图片和记录成功"); |
|||
return JsonResponse.newInstance().ok(list); |
|||
} |
|||
|
|||
|
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.ccsens.wisdomcar.bean.dto; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: 上传图片和记录 |
|||
* @author: |
|||
* @time: |
|||
*/ |
|||
@Data |
|||
public class OtherRecordsDto { |
|||
|
|||
@Data |
|||
@ApiModel("上传图片和记录") |
|||
public static class PicturesAndRecords { |
|||
@ApiModelProperty("分解任务id") |
|||
private Long id; |
|||
@ApiModelProperty("上传图片") |
|||
private List<String> pictures; |
|||
@ApiModelProperty("上传记录") |
|||
private String records; |
|||
} |
|||
@Data |
|||
@ApiModel("查询上传图片和记录") |
|||
public static class Query { |
|||
@ApiModelProperty("分解任务id") |
|||
private Long id; |
|||
} |
|||
} |
@ -0,0 +1,106 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class Hospital implements Serializable { |
|||
private Long id; |
|||
|
|||
private String hospitalCode; |
|||
|
|||
private String hospitalName; |
|||
|
|||
private String hospitalShortName; |
|||
|
|||
private String hospitalIntro; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public String getHospitalCode() { |
|||
return hospitalCode; |
|||
} |
|||
|
|||
public void setHospitalCode(String hospitalCode) { |
|||
this.hospitalCode = hospitalCode == null ? null : hospitalCode.trim(); |
|||
} |
|||
|
|||
public String getHospitalName() { |
|||
return hospitalName; |
|||
} |
|||
|
|||
public void setHospitalName(String hospitalName) { |
|||
this.hospitalName = hospitalName == null ? null : hospitalName.trim(); |
|||
} |
|||
|
|||
public String getHospitalShortName() { |
|||
return hospitalShortName; |
|||
} |
|||
|
|||
public void setHospitalShortName(String hospitalShortName) { |
|||
this.hospitalShortName = hospitalShortName == null ? null : hospitalShortName.trim(); |
|||
} |
|||
|
|||
public String getHospitalIntro() { |
|||
return hospitalIntro; |
|||
} |
|||
|
|||
public void setHospitalIntro(String hospitalIntro) { |
|||
this.hospitalIntro = hospitalIntro == null ? null : hospitalIntro.trim(); |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", hospitalCode=").append(hospitalCode); |
|||
sb.append(", hospitalName=").append(hospitalName); |
|||
sb.append(", hospitalShortName=").append(hospitalShortName); |
|||
sb.append(", hospitalIntro=").append(hospitalIntro); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,721 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class HospitalExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public HospitalExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeIsNull() { |
|||
addCriterion("hospital_code is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeIsNotNull() { |
|||
addCriterion("hospital_code is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeEqualTo(String value) { |
|||
addCriterion("hospital_code =", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeNotEqualTo(String value) { |
|||
addCriterion("hospital_code <>", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeGreaterThan(String value) { |
|||
addCriterion("hospital_code >", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeGreaterThanOrEqualTo(String value) { |
|||
addCriterion("hospital_code >=", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeLessThan(String value) { |
|||
addCriterion("hospital_code <", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeLessThanOrEqualTo(String value) { |
|||
addCriterion("hospital_code <=", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeLike(String value) { |
|||
addCriterion("hospital_code like", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeNotLike(String value) { |
|||
addCriterion("hospital_code not like", value, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeIn(List<String> values) { |
|||
addCriterion("hospital_code in", values, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeNotIn(List<String> values) { |
|||
addCriterion("hospital_code not in", values, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeBetween(String value1, String value2) { |
|||
addCriterion("hospital_code between", value1, value2, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalCodeNotBetween(String value1, String value2) { |
|||
addCriterion("hospital_code not between", value1, value2, "hospitalCode"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameIsNull() { |
|||
addCriterion("hospital_name is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameIsNotNull() { |
|||
addCriterion("hospital_name is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameEqualTo(String value) { |
|||
addCriterion("hospital_name =", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameNotEqualTo(String value) { |
|||
addCriterion("hospital_name <>", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameGreaterThan(String value) { |
|||
addCriterion("hospital_name >", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameGreaterThanOrEqualTo(String value) { |
|||
addCriterion("hospital_name >=", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameLessThan(String value) { |
|||
addCriterion("hospital_name <", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameLessThanOrEqualTo(String value) { |
|||
addCriterion("hospital_name <=", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameLike(String value) { |
|||
addCriterion("hospital_name like", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameNotLike(String value) { |
|||
addCriterion("hospital_name not like", value, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameIn(List<String> values) { |
|||
addCriterion("hospital_name in", values, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameNotIn(List<String> values) { |
|||
addCriterion("hospital_name not in", values, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameBetween(String value1, String value2) { |
|||
addCriterion("hospital_name between", value1, value2, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalNameNotBetween(String value1, String value2) { |
|||
addCriterion("hospital_name not between", value1, value2, "hospitalName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameIsNull() { |
|||
addCriterion("hospital_short_name is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameIsNotNull() { |
|||
addCriterion("hospital_short_name is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameEqualTo(String value) { |
|||
addCriterion("hospital_short_name =", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameNotEqualTo(String value) { |
|||
addCriterion("hospital_short_name <>", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameGreaterThan(String value) { |
|||
addCriterion("hospital_short_name >", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameGreaterThanOrEqualTo(String value) { |
|||
addCriterion("hospital_short_name >=", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameLessThan(String value) { |
|||
addCriterion("hospital_short_name <", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameLessThanOrEqualTo(String value) { |
|||
addCriterion("hospital_short_name <=", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameLike(String value) { |
|||
addCriterion("hospital_short_name like", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameNotLike(String value) { |
|||
addCriterion("hospital_short_name not like", value, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameIn(List<String> values) { |
|||
addCriterion("hospital_short_name in", values, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameNotIn(List<String> values) { |
|||
addCriterion("hospital_short_name not in", values, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameBetween(String value1, String value2) { |
|||
addCriterion("hospital_short_name between", value1, value2, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalShortNameNotBetween(String value1, String value2) { |
|||
addCriterion("hospital_short_name not between", value1, value2, "hospitalShortName"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroIsNull() { |
|||
addCriterion("hospital_intro is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroIsNotNull() { |
|||
addCriterion("hospital_intro is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroEqualTo(String value) { |
|||
addCriterion("hospital_intro =", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroNotEqualTo(String value) { |
|||
addCriterion("hospital_intro <>", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroGreaterThan(String value) { |
|||
addCriterion("hospital_intro >", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroGreaterThanOrEqualTo(String value) { |
|||
addCriterion("hospital_intro >=", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroLessThan(String value) { |
|||
addCriterion("hospital_intro <", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroLessThanOrEqualTo(String value) { |
|||
addCriterion("hospital_intro <=", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroLike(String value) { |
|||
addCriterion("hospital_intro like", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroNotLike(String value) { |
|||
addCriterion("hospital_intro not like", value, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroIn(List<String> values) { |
|||
addCriterion("hospital_intro in", values, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroNotIn(List<String> values) { |
|||
addCriterion("hospital_intro not in", values, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroBetween(String value1, String value2) { |
|||
addCriterion("hospital_intro between", value1, value2, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIntroNotBetween(String value1, String value2) { |
|||
addCriterion("hospital_intro not between", value1, value2, "hospitalIntro"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,106 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class HospitalMember implements Serializable { |
|||
private Long id; |
|||
|
|||
private Byte position; |
|||
|
|||
private Byte department; |
|||
|
|||
private Long hospitalId; |
|||
|
|||
private Long userId; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Byte getPosition() { |
|||
return position; |
|||
} |
|||
|
|||
public void setPosition(Byte position) { |
|||
this.position = position; |
|||
} |
|||
|
|||
public Byte getDepartment() { |
|||
return department; |
|||
} |
|||
|
|||
public void setDepartment(Byte department) { |
|||
this.department = department; |
|||
} |
|||
|
|||
public Long getHospitalId() { |
|||
return hospitalId; |
|||
} |
|||
|
|||
public void setHospitalId(Long hospitalId) { |
|||
this.hospitalId = hospitalId; |
|||
} |
|||
|
|||
public Long getUserId() { |
|||
return userId; |
|||
} |
|||
|
|||
public void setUserId(Long userId) { |
|||
this.userId = userId; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", position=").append(position); |
|||
sb.append(", department=").append(department); |
|||
sb.append(", hospitalId=").append(hospitalId); |
|||
sb.append(", userId=").append(userId); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,681 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class HospitalMemberExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public HospitalMemberExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionIsNull() { |
|||
addCriterion("position is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionIsNotNull() { |
|||
addCriterion("position is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionEqualTo(Byte value) { |
|||
addCriterion("position =", value, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionNotEqualTo(Byte value) { |
|||
addCriterion("position <>", value, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionGreaterThan(Byte value) { |
|||
addCriterion("position >", value, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("position >=", value, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionLessThan(Byte value) { |
|||
addCriterion("position <", value, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionLessThanOrEqualTo(Byte value) { |
|||
addCriterion("position <=", value, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionIn(List<Byte> values) { |
|||
addCriterion("position in", values, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionNotIn(List<Byte> values) { |
|||
addCriterion("position not in", values, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionBetween(Byte value1, Byte value2) { |
|||
addCriterion("position between", value1, value2, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPositionNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("position not between", value1, value2, "position"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentIsNull() { |
|||
addCriterion("department is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentIsNotNull() { |
|||
addCriterion("department is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentEqualTo(Byte value) { |
|||
addCriterion("department =", value, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentNotEqualTo(Byte value) { |
|||
addCriterion("department <>", value, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentGreaterThan(Byte value) { |
|||
addCriterion("department >", value, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("department >=", value, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentLessThan(Byte value) { |
|||
addCriterion("department <", value, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentLessThanOrEqualTo(Byte value) { |
|||
addCriterion("department <=", value, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentIn(List<Byte> values) { |
|||
addCriterion("department in", values, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentNotIn(List<Byte> values) { |
|||
addCriterion("department not in", values, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentBetween(Byte value1, Byte value2) { |
|||
addCriterion("department between", value1, value2, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andDepartmentNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("department not between", value1, value2, "department"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdIsNull() { |
|||
addCriterion("hospital_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdIsNotNull() { |
|||
addCriterion("hospital_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdEqualTo(Long value) { |
|||
addCriterion("hospital_id =", value, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdNotEqualTo(Long value) { |
|||
addCriterion("hospital_id <>", value, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdGreaterThan(Long value) { |
|||
addCriterion("hospital_id >", value, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("hospital_id >=", value, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdLessThan(Long value) { |
|||
addCriterion("hospital_id <", value, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("hospital_id <=", value, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdIn(List<Long> values) { |
|||
addCriterion("hospital_id in", values, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdNotIn(List<Long> values) { |
|||
addCriterion("hospital_id not in", values, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdBetween(Long value1, Long value2) { |
|||
addCriterion("hospital_id between", value1, value2, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("hospital_id not between", value1, value2, "hospitalId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdIsNull() { |
|||
addCriterion("user_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdIsNotNull() { |
|||
addCriterion("user_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdEqualTo(Long value) { |
|||
addCriterion("user_id =", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdNotEqualTo(Long value) { |
|||
addCriterion("user_id <>", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdGreaterThan(Long value) { |
|||
addCriterion("user_id >", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("user_id >=", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdLessThan(Long value) { |
|||
addCriterion("user_id <", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("user_id <=", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdIn(List<Long> values) { |
|||
addCriterion("user_id in", values, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdNotIn(List<Long> values) { |
|||
addCriterion("user_id not in", values, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdBetween(Long value1, Long value2) { |
|||
addCriterion("user_id between", value1, value2, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("user_id not between", value1, value2, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,95 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class HospitalWroking implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long startTime; |
|||
|
|||
private Long endTime; |
|||
|
|||
private Long hospitalMemberId; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getStartTime() { |
|||
return startTime; |
|||
} |
|||
|
|||
public void setStartTime(Long startTime) { |
|||
this.startTime = startTime; |
|||
} |
|||
|
|||
public Long getEndTime() { |
|||
return endTime; |
|||
} |
|||
|
|||
public void setEndTime(Long endTime) { |
|||
this.endTime = endTime; |
|||
} |
|||
|
|||
public Long getHospitalMemberId() { |
|||
return hospitalMemberId; |
|||
} |
|||
|
|||
public void setHospitalMemberId(Long hospitalMemberId) { |
|||
this.hospitalMemberId = hospitalMemberId; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", startTime=").append(startTime); |
|||
sb.append(", endTime=").append(endTime); |
|||
sb.append(", hospitalMemberId=").append(hospitalMemberId); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,621 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class HospitalWrokingExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public HospitalWrokingExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIsNull() { |
|||
addCriterion("start_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIsNotNull() { |
|||
addCriterion("start_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeEqualTo(Long value) { |
|||
addCriterion("start_time =", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotEqualTo(Long value) { |
|||
addCriterion("start_time <>", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeGreaterThan(Long value) { |
|||
addCriterion("start_time >", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("start_time >=", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeLessThan(Long value) { |
|||
addCriterion("start_time <", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeLessThanOrEqualTo(Long value) { |
|||
addCriterion("start_time <=", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIn(List<Long> values) { |
|||
addCriterion("start_time in", values, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotIn(List<Long> values) { |
|||
addCriterion("start_time not in", values, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeBetween(Long value1, Long value2) { |
|||
addCriterion("start_time between", value1, value2, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotBetween(Long value1, Long value2) { |
|||
addCriterion("start_time not between", value1, value2, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeIsNull() { |
|||
addCriterion("end_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeIsNotNull() { |
|||
addCriterion("end_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeEqualTo(Long value) { |
|||
addCriterion("end_time =", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeNotEqualTo(Long value) { |
|||
addCriterion("end_time <>", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeGreaterThan(Long value) { |
|||
addCriterion("end_time >", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("end_time >=", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeLessThan(Long value) { |
|||
addCriterion("end_time <", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeLessThanOrEqualTo(Long value) { |
|||
addCriterion("end_time <=", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeIn(List<Long> values) { |
|||
addCriterion("end_time in", values, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeNotIn(List<Long> values) { |
|||
addCriterion("end_time not in", values, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeBetween(Long value1, Long value2) { |
|||
addCriterion("end_time between", value1, value2, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeNotBetween(Long value1, Long value2) { |
|||
addCriterion("end_time not between", value1, value2, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdIsNull() { |
|||
addCriterion("hospital_member_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdIsNotNull() { |
|||
addCriterion("hospital_member_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdEqualTo(Long value) { |
|||
addCriterion("hospital_member_id =", value, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdNotEqualTo(Long value) { |
|||
addCriterion("hospital_member_id <>", value, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdGreaterThan(Long value) { |
|||
addCriterion("hospital_member_id >", value, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("hospital_member_id >=", value, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdLessThan(Long value) { |
|||
addCriterion("hospital_member_id <", value, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("hospital_member_id <=", value, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdIn(List<Long> values) { |
|||
addCriterion("hospital_member_id in", values, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdNotIn(List<Long> values) { |
|||
addCriterion("hospital_member_id not in", values, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdBetween(Long value1, Long value2) { |
|||
addCriterion("hospital_member_id between", value1, value2, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andHospitalMemberIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("hospital_member_id not between", value1, value2, "hospitalMemberId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,161 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class PatientData implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long patientCarId; |
|||
|
|||
private Long wisdomCarRecordId; |
|||
|
|||
private Long userId; |
|||
|
|||
private Long taskSubId; |
|||
|
|||
private Long stepId; |
|||
|
|||
private Byte stepStatus; |
|||
|
|||
private Byte pushStatus; |
|||
|
|||
private Long startTime; |
|||
|
|||
private Byte type; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getPatientCarId() { |
|||
return patientCarId; |
|||
} |
|||
|
|||
public void setPatientCarId(Long patientCarId) { |
|||
this.patientCarId = patientCarId; |
|||
} |
|||
|
|||
public Long getWisdomCarRecordId() { |
|||
return wisdomCarRecordId; |
|||
} |
|||
|
|||
public void setWisdomCarRecordId(Long wisdomCarRecordId) { |
|||
this.wisdomCarRecordId = wisdomCarRecordId; |
|||
} |
|||
|
|||
public Long getUserId() { |
|||
return userId; |
|||
} |
|||
|
|||
public void setUserId(Long userId) { |
|||
this.userId = userId; |
|||
} |
|||
|
|||
public Long getTaskSubId() { |
|||
return taskSubId; |
|||
} |
|||
|
|||
public void setTaskSubId(Long taskSubId) { |
|||
this.taskSubId = taskSubId; |
|||
} |
|||
|
|||
public Long getStepId() { |
|||
return stepId; |
|||
} |
|||
|
|||
public void setStepId(Long stepId) { |
|||
this.stepId = stepId; |
|||
} |
|||
|
|||
public Byte getStepStatus() { |
|||
return stepStatus; |
|||
} |
|||
|
|||
public void setStepStatus(Byte stepStatus) { |
|||
this.stepStatus = stepStatus; |
|||
} |
|||
|
|||
public Byte getPushStatus() { |
|||
return pushStatus; |
|||
} |
|||
|
|||
public void setPushStatus(Byte pushStatus) { |
|||
this.pushStatus = pushStatus; |
|||
} |
|||
|
|||
public Long getStartTime() { |
|||
return startTime; |
|||
} |
|||
|
|||
public void setStartTime(Long startTime) { |
|||
this.startTime = startTime; |
|||
} |
|||
|
|||
public Byte getType() { |
|||
return type; |
|||
} |
|||
|
|||
public void setType(Byte type) { |
|||
this.type = type; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", patientCarId=").append(patientCarId); |
|||
sb.append(", wisdomCarRecordId=").append(wisdomCarRecordId); |
|||
sb.append(", userId=").append(userId); |
|||
sb.append(", taskSubId=").append(taskSubId); |
|||
sb.append(", stepId=").append(stepId); |
|||
sb.append(", stepStatus=").append(stepStatus); |
|||
sb.append(", pushStatus=").append(pushStatus); |
|||
sb.append(", startTime=").append(startTime); |
|||
sb.append(", type=").append(type); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,981 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class PatientDataExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public PatientDataExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdIsNull() { |
|||
addCriterion("patient_car_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdIsNotNull() { |
|||
addCriterion("patient_car_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdEqualTo(Long value) { |
|||
addCriterion("patient_car_id =", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdNotEqualTo(Long value) { |
|||
addCriterion("patient_car_id <>", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdGreaterThan(Long value) { |
|||
addCriterion("patient_car_id >", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("patient_car_id >=", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdLessThan(Long value) { |
|||
addCriterion("patient_car_id <", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("patient_car_id <=", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdIn(List<Long> values) { |
|||
addCriterion("patient_car_id in", values, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdNotIn(List<Long> values) { |
|||
addCriterion("patient_car_id not in", values, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdBetween(Long value1, Long value2) { |
|||
addCriterion("patient_car_id between", value1, value2, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("patient_car_id not between", value1, value2, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdIsNull() { |
|||
addCriterion("wisdom_car_record_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdIsNotNull() { |
|||
addCriterion("wisdom_car_record_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdEqualTo(Long value) { |
|||
addCriterion("wisdom_car_record_id =", value, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdNotEqualTo(Long value) { |
|||
addCriterion("wisdom_car_record_id <>", value, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdGreaterThan(Long value) { |
|||
addCriterion("wisdom_car_record_id >", value, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("wisdom_car_record_id >=", value, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdLessThan(Long value) { |
|||
addCriterion("wisdom_car_record_id <", value, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("wisdom_car_record_id <=", value, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdIn(List<Long> values) { |
|||
addCriterion("wisdom_car_record_id in", values, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdNotIn(List<Long> values) { |
|||
addCriterion("wisdom_car_record_id not in", values, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdBetween(Long value1, Long value2) { |
|||
addCriterion("wisdom_car_record_id between", value1, value2, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andWisdomCarRecordIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("wisdom_car_record_id not between", value1, value2, "wisdomCarRecordId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdIsNull() { |
|||
addCriterion("user_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdIsNotNull() { |
|||
addCriterion("user_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdEqualTo(Long value) { |
|||
addCriterion("user_id =", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdNotEqualTo(Long value) { |
|||
addCriterion("user_id <>", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdGreaterThan(Long value) { |
|||
addCriterion("user_id >", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("user_id >=", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdLessThan(Long value) { |
|||
addCriterion("user_id <", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("user_id <=", value, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdIn(List<Long> values) { |
|||
addCriterion("user_id in", values, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdNotIn(List<Long> values) { |
|||
addCriterion("user_id not in", values, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdBetween(Long value1, Long value2) { |
|||
addCriterion("user_id between", value1, value2, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUserIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("user_id not between", value1, value2, "userId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNull() { |
|||
addCriterion("task_sub_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNotNull() { |
|||
addCriterion("task_sub_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdEqualTo(Long value) { |
|||
addCriterion("task_sub_id =", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotEqualTo(Long value) { |
|||
addCriterion("task_sub_id <>", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThan(Long value) { |
|||
addCriterion("task_sub_id >", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id >=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThan(Long value) { |
|||
addCriterion("task_sub_id <", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id <=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIn(List<Long> values) { |
|||
addCriterion("task_sub_id in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotIn(List<Long> values) { |
|||
addCriterion("task_sub_id not in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id not between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdIsNull() { |
|||
addCriterion("step_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdIsNotNull() { |
|||
addCriterion("step_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdEqualTo(Long value) { |
|||
addCriterion("step_id =", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdNotEqualTo(Long value) { |
|||
addCriterion("step_id <>", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdGreaterThan(Long value) { |
|||
addCriterion("step_id >", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("step_id >=", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdLessThan(Long value) { |
|||
addCriterion("step_id <", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("step_id <=", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdIn(List<Long> values) { |
|||
addCriterion("step_id in", values, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdNotIn(List<Long> values) { |
|||
addCriterion("step_id not in", values, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdBetween(Long value1, Long value2) { |
|||
addCriterion("step_id between", value1, value2, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("step_id not between", value1, value2, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusIsNull() { |
|||
addCriterion("step_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusIsNotNull() { |
|||
addCriterion("step_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusEqualTo(Byte value) { |
|||
addCriterion("step_status =", value, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusNotEqualTo(Byte value) { |
|||
addCriterion("step_status <>", value, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusGreaterThan(Byte value) { |
|||
addCriterion("step_status >", value, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("step_status >=", value, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusLessThan(Byte value) { |
|||
addCriterion("step_status <", value, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("step_status <=", value, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusIn(List<Byte> values) { |
|||
addCriterion("step_status in", values, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusNotIn(List<Byte> values) { |
|||
addCriterion("step_status not in", values, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("step_status between", value1, value2, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("step_status not between", value1, value2, "stepStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusIsNull() { |
|||
addCriterion("push_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusIsNotNull() { |
|||
addCriterion("push_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusEqualTo(Byte value) { |
|||
addCriterion("push_status =", value, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusNotEqualTo(Byte value) { |
|||
addCriterion("push_status <>", value, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusGreaterThan(Byte value) { |
|||
addCriterion("push_status >", value, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("push_status >=", value, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusLessThan(Byte value) { |
|||
addCriterion("push_status <", value, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("push_status <=", value, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusIn(List<Byte> values) { |
|||
addCriterion("push_status in", values, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusNotIn(List<Byte> values) { |
|||
addCriterion("push_status not in", values, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("push_status between", value1, value2, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPushStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("push_status not between", value1, value2, "pushStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIsNull() { |
|||
addCriterion("start_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIsNotNull() { |
|||
addCriterion("start_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeEqualTo(Long value) { |
|||
addCriterion("start_time =", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotEqualTo(Long value) { |
|||
addCriterion("start_time <>", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeGreaterThan(Long value) { |
|||
addCriterion("start_time >", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("start_time >=", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeLessThan(Long value) { |
|||
addCriterion("start_time <", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeLessThanOrEqualTo(Long value) { |
|||
addCriterion("start_time <=", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIn(List<Long> values) { |
|||
addCriterion("start_time in", values, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotIn(List<Long> values) { |
|||
addCriterion("start_time not in", values, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeBetween(Long value1, Long value2) { |
|||
addCriterion("start_time between", value1, value2, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotBetween(Long value1, Long value2) { |
|||
addCriterion("start_time not between", value1, value2, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeIsNull() { |
|||
addCriterion("type is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeIsNotNull() { |
|||
addCriterion("type is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeEqualTo(Byte value) { |
|||
addCriterion("type =", value, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeNotEqualTo(Byte value) { |
|||
addCriterion("type <>", value, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeGreaterThan(Byte value) { |
|||
addCriterion("type >", value, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("type >=", value, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeLessThan(Byte value) { |
|||
addCriterion("type <", value, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeLessThanOrEqualTo(Byte value) { |
|||
addCriterion("type <=", value, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeIn(List<Byte> values) { |
|||
addCriterion("type in", values, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeNotIn(List<Byte> values) { |
|||
addCriterion("type not in", values, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeBetween(Byte value1, Byte value2) { |
|||
addCriterion("type between", value1, value2, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTypeNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("type not between", value1, value2, "type"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,95 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class PatientFamily implements Serializable { |
|||
private Long id; |
|||
|
|||
private String name; |
|||
|
|||
private String phone; |
|||
|
|||
private Long patientId; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public String getName() { |
|||
return name; |
|||
} |
|||
|
|||
public void setName(String name) { |
|||
this.name = name == null ? null : name.trim(); |
|||
} |
|||
|
|||
public String getPhone() { |
|||
return phone; |
|||
} |
|||
|
|||
public void setPhone(String phone) { |
|||
this.phone = phone == null ? null : phone.trim(); |
|||
} |
|||
|
|||
public Long getPatientId() { |
|||
return patientId; |
|||
} |
|||
|
|||
public void setPatientId(Long patientId) { |
|||
this.patientId = patientId; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", name=").append(name); |
|||
sb.append(", phone=").append(phone); |
|||
sb.append(", patientId=").append(patientId); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,641 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class PatientFamilyExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public PatientFamilyExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameIsNull() { |
|||
addCriterion("name is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameIsNotNull() { |
|||
addCriterion("name is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameEqualTo(String value) { |
|||
addCriterion("name =", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotEqualTo(String value) { |
|||
addCriterion("name <>", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameGreaterThan(String value) { |
|||
addCriterion("name >", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameGreaterThanOrEqualTo(String value) { |
|||
addCriterion("name >=", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameLessThan(String value) { |
|||
addCriterion("name <", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameLessThanOrEqualTo(String value) { |
|||
addCriterion("name <=", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameLike(String value) { |
|||
addCriterion("name like", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotLike(String value) { |
|||
addCriterion("name not like", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameIn(List<String> values) { |
|||
addCriterion("name in", values, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotIn(List<String> values) { |
|||
addCriterion("name not in", values, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameBetween(String value1, String value2) { |
|||
addCriterion("name between", value1, value2, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotBetween(String value1, String value2) { |
|||
addCriterion("name not between", value1, value2, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneIsNull() { |
|||
addCriterion("phone is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneIsNotNull() { |
|||
addCriterion("phone is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneEqualTo(String value) { |
|||
addCriterion("phone =", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotEqualTo(String value) { |
|||
addCriterion("phone <>", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneGreaterThan(String value) { |
|||
addCriterion("phone >", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneGreaterThanOrEqualTo(String value) { |
|||
addCriterion("phone >=", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneLessThan(String value) { |
|||
addCriterion("phone <", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneLessThanOrEqualTo(String value) { |
|||
addCriterion("phone <=", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneLike(String value) { |
|||
addCriterion("phone like", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotLike(String value) { |
|||
addCriterion("phone not like", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneIn(List<String> values) { |
|||
addCriterion("phone in", values, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotIn(List<String> values) { |
|||
addCriterion("phone not in", values, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneBetween(String value1, String value2) { |
|||
addCriterion("phone between", value1, value2, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotBetween(String value1, String value2) { |
|||
addCriterion("phone not between", value1, value2, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIsNull() { |
|||
addCriterion("patient_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIsNotNull() { |
|||
addCriterion("patient_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdEqualTo(Long value) { |
|||
addCriterion("patient_id =", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotEqualTo(Long value) { |
|||
addCriterion("patient_id <>", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdGreaterThan(Long value) { |
|||
addCriterion("patient_id >", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("patient_id >=", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdLessThan(Long value) { |
|||
addCriterion("patient_id <", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("patient_id <=", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIn(List<Long> values) { |
|||
addCriterion("patient_id in", values, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotIn(List<Long> values) { |
|||
addCriterion("patient_id not in", values, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdBetween(Long value1, Long value2) { |
|||
addCriterion("patient_id between", value1, value2, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("patient_id not between", value1, value2, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,106 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class PatientInformationRecord implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long patientCarId; |
|||
|
|||
private Long taskSubId; |
|||
|
|||
private Byte informationType; |
|||
|
|||
private String content; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getPatientCarId() { |
|||
return patientCarId; |
|||
} |
|||
|
|||
public void setPatientCarId(Long patientCarId) { |
|||
this.patientCarId = patientCarId; |
|||
} |
|||
|
|||
public Long getTaskSubId() { |
|||
return taskSubId; |
|||
} |
|||
|
|||
public void setTaskSubId(Long taskSubId) { |
|||
this.taskSubId = taskSubId; |
|||
} |
|||
|
|||
public Byte getInformationType() { |
|||
return informationType; |
|||
} |
|||
|
|||
public void setInformationType(Byte informationType) { |
|||
this.informationType = informationType; |
|||
} |
|||
|
|||
public String getContent() { |
|||
return content; |
|||
} |
|||
|
|||
public void setContent(String content) { |
|||
this.content = content == null ? null : content.trim(); |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", patientCarId=").append(patientCarId); |
|||
sb.append(", taskSubId=").append(taskSubId); |
|||
sb.append(", informationType=").append(informationType); |
|||
sb.append(", content=").append(content); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,691 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class PatientInformationRecordExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public PatientInformationRecordExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdIsNull() { |
|||
addCriterion("patient_car_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdIsNotNull() { |
|||
addCriterion("patient_car_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdEqualTo(Long value) { |
|||
addCriterion("patient_car_id =", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdNotEqualTo(Long value) { |
|||
addCriterion("patient_car_id <>", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdGreaterThan(Long value) { |
|||
addCriterion("patient_car_id >", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("patient_car_id >=", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdLessThan(Long value) { |
|||
addCriterion("patient_car_id <", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("patient_car_id <=", value, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdIn(List<Long> values) { |
|||
addCriterion("patient_car_id in", values, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdNotIn(List<Long> values) { |
|||
addCriterion("patient_car_id not in", values, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdBetween(Long value1, Long value2) { |
|||
addCriterion("patient_car_id between", value1, value2, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientCarIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("patient_car_id not between", value1, value2, "patientCarId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNull() { |
|||
addCriterion("task_sub_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNotNull() { |
|||
addCriterion("task_sub_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdEqualTo(Long value) { |
|||
addCriterion("task_sub_id =", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotEqualTo(Long value) { |
|||
addCriterion("task_sub_id <>", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThan(Long value) { |
|||
addCriterion("task_sub_id >", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id >=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThan(Long value) { |
|||
addCriterion("task_sub_id <", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id <=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIn(List<Long> values) { |
|||
addCriterion("task_sub_id in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotIn(List<Long> values) { |
|||
addCriterion("task_sub_id not in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id not between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeIsNull() { |
|||
addCriterion("information_type is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeIsNotNull() { |
|||
addCriterion("information_type is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeEqualTo(Byte value) { |
|||
addCriterion("information_type =", value, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeNotEqualTo(Byte value) { |
|||
addCriterion("information_type <>", value, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeGreaterThan(Byte value) { |
|||
addCriterion("information_type >", value, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("information_type >=", value, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeLessThan(Byte value) { |
|||
addCriterion("information_type <", value, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeLessThanOrEqualTo(Byte value) { |
|||
addCriterion("information_type <=", value, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeIn(List<Byte> values) { |
|||
addCriterion("information_type in", values, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeNotIn(List<Byte> values) { |
|||
addCriterion("information_type not in", values, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeBetween(Byte value1, Byte value2) { |
|||
addCriterion("information_type between", value1, value2, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andInformationTypeNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("information_type not between", value1, value2, "informationType"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentIsNull() { |
|||
addCriterion("content is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentIsNotNull() { |
|||
addCriterion("content is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentEqualTo(String value) { |
|||
addCriterion("content =", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentNotEqualTo(String value) { |
|||
addCriterion("content <>", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentGreaterThan(String value) { |
|||
addCriterion("content >", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentGreaterThanOrEqualTo(String value) { |
|||
addCriterion("content >=", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentLessThan(String value) { |
|||
addCriterion("content <", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentLessThanOrEqualTo(String value) { |
|||
addCriterion("content <=", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentLike(String value) { |
|||
addCriterion("content like", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentNotLike(String value) { |
|||
addCriterion("content not like", value, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentIn(List<String> values) { |
|||
addCriterion("content in", values, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentNotIn(List<String> values) { |
|||
addCriterion("content not in", values, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentBetween(String value1, String value2) { |
|||
addCriterion("content between", value1, value2, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andContentNotBetween(String value1, String value2) { |
|||
addCriterion("content not between", value1, value2, "content"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,139 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class PatientProject implements Serializable { |
|||
private Long id; |
|||
|
|||
private String medicalRecordNum; |
|||
|
|||
private String name; |
|||
|
|||
private Byte sex; |
|||
|
|||
private Integer age; |
|||
|
|||
private String idCard; |
|||
|
|||
private String phone; |
|||
|
|||
private Long projectId; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public String getMedicalRecordNum() { |
|||
return medicalRecordNum; |
|||
} |
|||
|
|||
public void setMedicalRecordNum(String medicalRecordNum) { |
|||
this.medicalRecordNum = medicalRecordNum == null ? null : medicalRecordNum.trim(); |
|||
} |
|||
|
|||
public String getName() { |
|||
return name; |
|||
} |
|||
|
|||
public void setName(String name) { |
|||
this.name = name == null ? null : name.trim(); |
|||
} |
|||
|
|||
public Byte getSex() { |
|||
return sex; |
|||
} |
|||
|
|||
public void setSex(Byte sex) { |
|||
this.sex = sex; |
|||
} |
|||
|
|||
public Integer getAge() { |
|||
return age; |
|||
} |
|||
|
|||
public void setAge(Integer age) { |
|||
this.age = age; |
|||
} |
|||
|
|||
public String getIdCard() { |
|||
return idCard; |
|||
} |
|||
|
|||
public void setIdCard(String idCard) { |
|||
this.idCard = idCard == null ? null : idCard.trim(); |
|||
} |
|||
|
|||
public String getPhone() { |
|||
return phone; |
|||
} |
|||
|
|||
public void setPhone(String phone) { |
|||
this.phone = phone == null ? null : phone.trim(); |
|||
} |
|||
|
|||
public Long getProjectId() { |
|||
return projectId; |
|||
} |
|||
|
|||
public void setProjectId(Long projectId) { |
|||
this.projectId = projectId; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", medicalRecordNum=").append(medicalRecordNum); |
|||
sb.append(", name=").append(name); |
|||
sb.append(", sex=").append(sex); |
|||
sb.append(", age=").append(age); |
|||
sb.append(", idCard=").append(idCard); |
|||
sb.append(", phone=").append(phone); |
|||
sb.append(", projectId=").append(projectId); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,901 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class PatientProjectExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public PatientProjectExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumIsNull() { |
|||
addCriterion("medical_record_num is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumIsNotNull() { |
|||
addCriterion("medical_record_num is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumEqualTo(String value) { |
|||
addCriterion("medical_record_num =", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumNotEqualTo(String value) { |
|||
addCriterion("medical_record_num <>", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumGreaterThan(String value) { |
|||
addCriterion("medical_record_num >", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumGreaterThanOrEqualTo(String value) { |
|||
addCriterion("medical_record_num >=", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumLessThan(String value) { |
|||
addCriterion("medical_record_num <", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumLessThanOrEqualTo(String value) { |
|||
addCriterion("medical_record_num <=", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumLike(String value) { |
|||
addCriterion("medical_record_num like", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumNotLike(String value) { |
|||
addCriterion("medical_record_num not like", value, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumIn(List<String> values) { |
|||
addCriterion("medical_record_num in", values, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumNotIn(List<String> values) { |
|||
addCriterion("medical_record_num not in", values, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumBetween(String value1, String value2) { |
|||
addCriterion("medical_record_num between", value1, value2, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andMedicalRecordNumNotBetween(String value1, String value2) { |
|||
addCriterion("medical_record_num not between", value1, value2, "medicalRecordNum"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameIsNull() { |
|||
addCriterion("name is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameIsNotNull() { |
|||
addCriterion("name is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameEqualTo(String value) { |
|||
addCriterion("name =", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotEqualTo(String value) { |
|||
addCriterion("name <>", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameGreaterThan(String value) { |
|||
addCriterion("name >", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameGreaterThanOrEqualTo(String value) { |
|||
addCriterion("name >=", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameLessThan(String value) { |
|||
addCriterion("name <", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameLessThanOrEqualTo(String value) { |
|||
addCriterion("name <=", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameLike(String value) { |
|||
addCriterion("name like", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotLike(String value) { |
|||
addCriterion("name not like", value, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameIn(List<String> values) { |
|||
addCriterion("name in", values, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotIn(List<String> values) { |
|||
addCriterion("name not in", values, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameBetween(String value1, String value2) { |
|||
addCriterion("name between", value1, value2, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andNameNotBetween(String value1, String value2) { |
|||
addCriterion("name not between", value1, value2, "name"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexIsNull() { |
|||
addCriterion("sex is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexIsNotNull() { |
|||
addCriterion("sex is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexEqualTo(Byte value) { |
|||
addCriterion("sex =", value, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexNotEqualTo(Byte value) { |
|||
addCriterion("sex <>", value, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexGreaterThan(Byte value) { |
|||
addCriterion("sex >", value, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("sex >=", value, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexLessThan(Byte value) { |
|||
addCriterion("sex <", value, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexLessThanOrEqualTo(Byte value) { |
|||
addCriterion("sex <=", value, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexIn(List<Byte> values) { |
|||
addCriterion("sex in", values, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexNotIn(List<Byte> values) { |
|||
addCriterion("sex not in", values, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexBetween(Byte value1, Byte value2) { |
|||
addCriterion("sex between", value1, value2, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andSexNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("sex not between", value1, value2, "sex"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeIsNull() { |
|||
addCriterion("age is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeIsNotNull() { |
|||
addCriterion("age is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeEqualTo(Integer value) { |
|||
addCriterion("age =", value, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeNotEqualTo(Integer value) { |
|||
addCriterion("age <>", value, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeGreaterThan(Integer value) { |
|||
addCriterion("age >", value, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeGreaterThanOrEqualTo(Integer value) { |
|||
addCriterion("age >=", value, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeLessThan(Integer value) { |
|||
addCriterion("age <", value, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeLessThanOrEqualTo(Integer value) { |
|||
addCriterion("age <=", value, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeIn(List<Integer> values) { |
|||
addCriterion("age in", values, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeNotIn(List<Integer> values) { |
|||
addCriterion("age not in", values, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeBetween(Integer value1, Integer value2) { |
|||
addCriterion("age between", value1, value2, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andAgeNotBetween(Integer value1, Integer value2) { |
|||
addCriterion("age not between", value1, value2, "age"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardIsNull() { |
|||
addCriterion("id_card is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardIsNotNull() { |
|||
addCriterion("id_card is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardEqualTo(String value) { |
|||
addCriterion("id_card =", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardNotEqualTo(String value) { |
|||
addCriterion("id_card <>", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardGreaterThan(String value) { |
|||
addCriterion("id_card >", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardGreaterThanOrEqualTo(String value) { |
|||
addCriterion("id_card >=", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardLessThan(String value) { |
|||
addCriterion("id_card <", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardLessThanOrEqualTo(String value) { |
|||
addCriterion("id_card <=", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardLike(String value) { |
|||
addCriterion("id_card like", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardNotLike(String value) { |
|||
addCriterion("id_card not like", value, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardIn(List<String> values) { |
|||
addCriterion("id_card in", values, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardNotIn(List<String> values) { |
|||
addCriterion("id_card not in", values, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardBetween(String value1, String value2) { |
|||
addCriterion("id_card between", value1, value2, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdCardNotBetween(String value1, String value2) { |
|||
addCriterion("id_card not between", value1, value2, "idCard"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneIsNull() { |
|||
addCriterion("phone is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneIsNotNull() { |
|||
addCriterion("phone is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneEqualTo(String value) { |
|||
addCriterion("phone =", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotEqualTo(String value) { |
|||
addCriterion("phone <>", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneGreaterThan(String value) { |
|||
addCriterion("phone >", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneGreaterThanOrEqualTo(String value) { |
|||
addCriterion("phone >=", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneLessThan(String value) { |
|||
addCriterion("phone <", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneLessThanOrEqualTo(String value) { |
|||
addCriterion("phone <=", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneLike(String value) { |
|||
addCriterion("phone like", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotLike(String value) { |
|||
addCriterion("phone not like", value, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneIn(List<String> values) { |
|||
addCriterion("phone in", values, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotIn(List<String> values) { |
|||
addCriterion("phone not in", values, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneBetween(String value1, String value2) { |
|||
addCriterion("phone between", value1, value2, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPhoneNotBetween(String value1, String value2) { |
|||
addCriterion("phone not between", value1, value2, "phone"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdIsNull() { |
|||
addCriterion("project_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdIsNotNull() { |
|||
addCriterion("project_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdEqualTo(Long value) { |
|||
addCriterion("project_id =", value, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdNotEqualTo(Long value) { |
|||
addCriterion("project_id <>", value, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdGreaterThan(Long value) { |
|||
addCriterion("project_id >", value, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("project_id >=", value, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdLessThan(Long value) { |
|||
addCriterion("project_id <", value, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("project_id <=", value, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdIn(List<Long> values) { |
|||
addCriterion("project_id in", values, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdNotIn(List<Long> values) { |
|||
addCriterion("project_id not in", values, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdBetween(Long value1, Long value2) { |
|||
addCriterion("project_id between", value1, value2, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andProjectIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("project_id not between", value1, value2, "projectId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,128 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class PatientWisdomCar implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long patientId; |
|||
|
|||
private Long taskSubId; |
|||
|
|||
private Long carId; |
|||
|
|||
private Long startTime; |
|||
|
|||
private Long endTime; |
|||
|
|||
private Byte isDemo; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getPatientId() { |
|||
return patientId; |
|||
} |
|||
|
|||
public void setPatientId(Long patientId) { |
|||
this.patientId = patientId; |
|||
} |
|||
|
|||
public Long getTaskSubId() { |
|||
return taskSubId; |
|||
} |
|||
|
|||
public void setTaskSubId(Long taskSubId) { |
|||
this.taskSubId = taskSubId; |
|||
} |
|||
|
|||
public Long getCarId() { |
|||
return carId; |
|||
} |
|||
|
|||
public void setCarId(Long carId) { |
|||
this.carId = carId; |
|||
} |
|||
|
|||
public Long getStartTime() { |
|||
return startTime; |
|||
} |
|||
|
|||
public void setStartTime(Long startTime) { |
|||
this.startTime = startTime; |
|||
} |
|||
|
|||
public Long getEndTime() { |
|||
return endTime; |
|||
} |
|||
|
|||
public void setEndTime(Long endTime) { |
|||
this.endTime = endTime; |
|||
} |
|||
|
|||
public Byte getIsDemo() { |
|||
return isDemo; |
|||
} |
|||
|
|||
public void setIsDemo(Byte isDemo) { |
|||
this.isDemo = isDemo; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", patientId=").append(patientId); |
|||
sb.append(", taskSubId=").append(taskSubId); |
|||
sb.append(", carId=").append(carId); |
|||
sb.append(", startTime=").append(startTime); |
|||
sb.append(", endTime=").append(endTime); |
|||
sb.append(", isDemo=").append(isDemo); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,801 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class PatientWisdomCarExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public PatientWisdomCarExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIsNull() { |
|||
addCriterion("patient_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIsNotNull() { |
|||
addCriterion("patient_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdEqualTo(Long value) { |
|||
addCriterion("patient_id =", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotEqualTo(Long value) { |
|||
addCriterion("patient_id <>", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdGreaterThan(Long value) { |
|||
addCriterion("patient_id >", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("patient_id >=", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdLessThan(Long value) { |
|||
addCriterion("patient_id <", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("patient_id <=", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIn(List<Long> values) { |
|||
addCriterion("patient_id in", values, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotIn(List<Long> values) { |
|||
addCriterion("patient_id not in", values, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdBetween(Long value1, Long value2) { |
|||
addCriterion("patient_id between", value1, value2, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("patient_id not between", value1, value2, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNull() { |
|||
addCriterion("task_sub_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNotNull() { |
|||
addCriterion("task_sub_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdEqualTo(Long value) { |
|||
addCriterion("task_sub_id =", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotEqualTo(Long value) { |
|||
addCriterion("task_sub_id <>", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThan(Long value) { |
|||
addCriterion("task_sub_id >", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id >=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThan(Long value) { |
|||
addCriterion("task_sub_id <", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id <=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIn(List<Long> values) { |
|||
addCriterion("task_sub_id in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotIn(List<Long> values) { |
|||
addCriterion("task_sub_id not in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id not between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdIsNull() { |
|||
addCriterion("car_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdIsNotNull() { |
|||
addCriterion("car_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdEqualTo(Long value) { |
|||
addCriterion("car_id =", value, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdNotEqualTo(Long value) { |
|||
addCriterion("car_id <>", value, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdGreaterThan(Long value) { |
|||
addCriterion("car_id >", value, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("car_id >=", value, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdLessThan(Long value) { |
|||
addCriterion("car_id <", value, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("car_id <=", value, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdIn(List<Long> values) { |
|||
addCriterion("car_id in", values, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdNotIn(List<Long> values) { |
|||
addCriterion("car_id not in", values, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdBetween(Long value1, Long value2) { |
|||
addCriterion("car_id between", value1, value2, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCarIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("car_id not between", value1, value2, "carId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIsNull() { |
|||
addCriterion("start_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIsNotNull() { |
|||
addCriterion("start_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeEqualTo(Long value) { |
|||
addCriterion("start_time =", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotEqualTo(Long value) { |
|||
addCriterion("start_time <>", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeGreaterThan(Long value) { |
|||
addCriterion("start_time >", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("start_time >=", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeLessThan(Long value) { |
|||
addCriterion("start_time <", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeLessThanOrEqualTo(Long value) { |
|||
addCriterion("start_time <=", value, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeIn(List<Long> values) { |
|||
addCriterion("start_time in", values, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotIn(List<Long> values) { |
|||
addCriterion("start_time not in", values, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeBetween(Long value1, Long value2) { |
|||
addCriterion("start_time between", value1, value2, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStartTimeNotBetween(Long value1, Long value2) { |
|||
addCriterion("start_time not between", value1, value2, "startTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeIsNull() { |
|||
addCriterion("end_time is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeIsNotNull() { |
|||
addCriterion("end_time is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeEqualTo(Long value) { |
|||
addCriterion("end_time =", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeNotEqualTo(Long value) { |
|||
addCriterion("end_time <>", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeGreaterThan(Long value) { |
|||
addCriterion("end_time >", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("end_time >=", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeLessThan(Long value) { |
|||
addCriterion("end_time <", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeLessThanOrEqualTo(Long value) { |
|||
addCriterion("end_time <=", value, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeIn(List<Long> values) { |
|||
addCriterion("end_time in", values, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeNotIn(List<Long> values) { |
|||
addCriterion("end_time not in", values, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeBetween(Long value1, Long value2) { |
|||
addCriterion("end_time between", value1, value2, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andEndTimeNotBetween(Long value1, Long value2) { |
|||
addCriterion("end_time not between", value1, value2, "endTime"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoIsNull() { |
|||
addCriterion("is_demo is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoIsNotNull() { |
|||
addCriterion("is_demo is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoEqualTo(Byte value) { |
|||
addCriterion("is_demo =", value, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoNotEqualTo(Byte value) { |
|||
addCriterion("is_demo <>", value, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoGreaterThan(Byte value) { |
|||
addCriterion("is_demo >", value, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("is_demo >=", value, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoLessThan(Byte value) { |
|||
addCriterion("is_demo <", value, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoLessThanOrEqualTo(Byte value) { |
|||
addCriterion("is_demo <=", value, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoIn(List<Byte> values) { |
|||
addCriterion("is_demo in", values, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoNotIn(List<Byte> values) { |
|||
addCriterion("is_demo not in", values, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoBetween(Byte value1, Byte value2) { |
|||
addCriterion("is_demo between", value1, value2, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIsDemoNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("is_demo not between", value1, value2, "isDemo"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,106 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
public class StepTask implements Serializable { |
|||
private Long id; |
|||
|
|||
private Long stepId; |
|||
|
|||
private Long taskSubId; |
|||
|
|||
private Long patientId; |
|||
|
|||
private Integer batch; |
|||
|
|||
private Date createdAt; |
|||
|
|||
private Date updatedAt; |
|||
|
|||
private Byte recStatus; |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public Long getStepId() { |
|||
return stepId; |
|||
} |
|||
|
|||
public void setStepId(Long stepId) { |
|||
this.stepId = stepId; |
|||
} |
|||
|
|||
public Long getTaskSubId() { |
|||
return taskSubId; |
|||
} |
|||
|
|||
public void setTaskSubId(Long taskSubId) { |
|||
this.taskSubId = taskSubId; |
|||
} |
|||
|
|||
public Long getPatientId() { |
|||
return patientId; |
|||
} |
|||
|
|||
public void setPatientId(Long patientId) { |
|||
this.patientId = patientId; |
|||
} |
|||
|
|||
public Integer getBatch() { |
|||
return batch; |
|||
} |
|||
|
|||
public void setBatch(Integer batch) { |
|||
this.batch = batch; |
|||
} |
|||
|
|||
public Date getCreatedAt() { |
|||
return createdAt; |
|||
} |
|||
|
|||
public void setCreatedAt(Date createdAt) { |
|||
this.createdAt = createdAt; |
|||
} |
|||
|
|||
public Date getUpdatedAt() { |
|||
return updatedAt; |
|||
} |
|||
|
|||
public void setUpdatedAt(Date updatedAt) { |
|||
this.updatedAt = updatedAt; |
|||
} |
|||
|
|||
public Byte getRecStatus() { |
|||
return recStatus; |
|||
} |
|||
|
|||
public void setRecStatus(Byte recStatus) { |
|||
this.recStatus = recStatus; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
StringBuilder sb = new StringBuilder(); |
|||
sb.append(getClass().getSimpleName()); |
|||
sb.append(" ["); |
|||
sb.append("Hash = ").append(hashCode()); |
|||
sb.append(", id=").append(id); |
|||
sb.append(", stepId=").append(stepId); |
|||
sb.append(", taskSubId=").append(taskSubId); |
|||
sb.append(", patientId=").append(patientId); |
|||
sb.append(", batch=").append(batch); |
|||
sb.append(", createdAt=").append(createdAt); |
|||
sb.append(", updatedAt=").append(updatedAt); |
|||
sb.append(", recStatus=").append(recStatus); |
|||
sb.append("]"); |
|||
return sb.toString(); |
|||
} |
|||
} |
@ -0,0 +1,681 @@ |
|||
package com.ccsens.wisdomcar.bean.po; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
public class StepTaskExample { |
|||
protected String orderByClause; |
|||
|
|||
protected boolean distinct; |
|||
|
|||
protected List<Criteria> oredCriteria; |
|||
|
|||
public StepTaskExample() { |
|||
oredCriteria = new ArrayList<Criteria>(); |
|||
} |
|||
|
|||
public void setOrderByClause(String orderByClause) { |
|||
this.orderByClause = orderByClause; |
|||
} |
|||
|
|||
public String getOrderByClause() { |
|||
return orderByClause; |
|||
} |
|||
|
|||
public void setDistinct(boolean distinct) { |
|||
this.distinct = distinct; |
|||
} |
|||
|
|||
public boolean isDistinct() { |
|||
return distinct; |
|||
} |
|||
|
|||
public List<Criteria> getOredCriteria() { |
|||
return oredCriteria; |
|||
} |
|||
|
|||
public void or(Criteria criteria) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
|
|||
public Criteria or() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
oredCriteria.add(criteria); |
|||
return criteria; |
|||
} |
|||
|
|||
public Criteria createCriteria() { |
|||
Criteria criteria = createCriteriaInternal(); |
|||
if (oredCriteria.size() == 0) { |
|||
oredCriteria.add(criteria); |
|||
} |
|||
return criteria; |
|||
} |
|||
|
|||
protected Criteria createCriteriaInternal() { |
|||
Criteria criteria = new Criteria(); |
|||
return criteria; |
|||
} |
|||
|
|||
public void clear() { |
|||
oredCriteria.clear(); |
|||
orderByClause = null; |
|||
distinct = false; |
|||
} |
|||
|
|||
protected abstract static class GeneratedCriteria { |
|||
protected List<Criterion> criteria; |
|||
|
|||
protected GeneratedCriteria() { |
|||
super(); |
|||
criteria = new ArrayList<Criterion>(); |
|||
} |
|||
|
|||
public boolean isValid() { |
|||
return criteria.size() > 0; |
|||
} |
|||
|
|||
public List<Criterion> getAllCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
public List<Criterion> getCriteria() { |
|||
return criteria; |
|||
} |
|||
|
|||
protected void addCriterion(String condition) { |
|||
if (condition == null) { |
|||
throw new RuntimeException("Value for condition cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value, String property) { |
|||
if (value == null) { |
|||
throw new RuntimeException("Value for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value)); |
|||
} |
|||
|
|||
protected void addCriterion(String condition, Object value1, Object value2, String property) { |
|||
if (value1 == null || value2 == null) { |
|||
throw new RuntimeException("Between values for " + property + " cannot be null"); |
|||
} |
|||
criteria.add(new Criterion(condition, value1, value2)); |
|||
} |
|||
|
|||
public Criteria andIdIsNull() { |
|||
addCriterion("id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIsNotNull() { |
|||
addCriterion("id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdEqualTo(Long value) { |
|||
addCriterion("id =", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotEqualTo(Long value) { |
|||
addCriterion("id <>", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThan(Long value) { |
|||
addCriterion("id >", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("id >=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThan(Long value) { |
|||
addCriterion("id <", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("id <=", value, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdIn(List<Long> values) { |
|||
addCriterion("id in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotIn(List<Long> values) { |
|||
addCriterion("id not in", values, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdBetween(Long value1, Long value2) { |
|||
addCriterion("id between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("id not between", value1, value2, "id"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdIsNull() { |
|||
addCriterion("step_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdIsNotNull() { |
|||
addCriterion("step_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdEqualTo(Long value) { |
|||
addCriterion("step_id =", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdNotEqualTo(Long value) { |
|||
addCriterion("step_id <>", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdGreaterThan(Long value) { |
|||
addCriterion("step_id >", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("step_id >=", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdLessThan(Long value) { |
|||
addCriterion("step_id <", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("step_id <=", value, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdIn(List<Long> values) { |
|||
addCriterion("step_id in", values, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdNotIn(List<Long> values) { |
|||
addCriterion("step_id not in", values, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdBetween(Long value1, Long value2) { |
|||
addCriterion("step_id between", value1, value2, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andStepIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("step_id not between", value1, value2, "stepId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNull() { |
|||
addCriterion("task_sub_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIsNotNull() { |
|||
addCriterion("task_sub_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdEqualTo(Long value) { |
|||
addCriterion("task_sub_id =", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotEqualTo(Long value) { |
|||
addCriterion("task_sub_id <>", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThan(Long value) { |
|||
addCriterion("task_sub_id >", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id >=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThan(Long value) { |
|||
addCriterion("task_sub_id <", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("task_sub_id <=", value, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdIn(List<Long> values) { |
|||
addCriterion("task_sub_id in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotIn(List<Long> values) { |
|||
addCriterion("task_sub_id not in", values, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andTaskSubIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("task_sub_id not between", value1, value2, "taskSubId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIsNull() { |
|||
addCriterion("patient_id is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIsNotNull() { |
|||
addCriterion("patient_id is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdEqualTo(Long value) { |
|||
addCriterion("patient_id =", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotEqualTo(Long value) { |
|||
addCriterion("patient_id <>", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdGreaterThan(Long value) { |
|||
addCriterion("patient_id >", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdGreaterThanOrEqualTo(Long value) { |
|||
addCriterion("patient_id >=", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdLessThan(Long value) { |
|||
addCriterion("patient_id <", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdLessThanOrEqualTo(Long value) { |
|||
addCriterion("patient_id <=", value, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdIn(List<Long> values) { |
|||
addCriterion("patient_id in", values, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotIn(List<Long> values) { |
|||
addCriterion("patient_id not in", values, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdBetween(Long value1, Long value2) { |
|||
addCriterion("patient_id between", value1, value2, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andPatientIdNotBetween(Long value1, Long value2) { |
|||
addCriterion("patient_id not between", value1, value2, "patientId"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchIsNull() { |
|||
addCriterion("batch is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchIsNotNull() { |
|||
addCriterion("batch is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchEqualTo(Integer value) { |
|||
addCriterion("batch =", value, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchNotEqualTo(Integer value) { |
|||
addCriterion("batch <>", value, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchGreaterThan(Integer value) { |
|||
addCriterion("batch >", value, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchGreaterThanOrEqualTo(Integer value) { |
|||
addCriterion("batch >=", value, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchLessThan(Integer value) { |
|||
addCriterion("batch <", value, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchLessThanOrEqualTo(Integer value) { |
|||
addCriterion("batch <=", value, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchIn(List<Integer> values) { |
|||
addCriterion("batch in", values, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchNotIn(List<Integer> values) { |
|||
addCriterion("batch not in", values, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchBetween(Integer value1, Integer value2) { |
|||
addCriterion("batch between", value1, value2, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andBatchNotBetween(Integer value1, Integer value2) { |
|||
addCriterion("batch not between", value1, value2, "batch"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNull() { |
|||
addCriterion("created_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIsNotNull() { |
|||
addCriterion("created_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtEqualTo(Date value) { |
|||
addCriterion("created_at =", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotEqualTo(Date value) { |
|||
addCriterion("created_at <>", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThan(Date value) { |
|||
addCriterion("created_at >", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("created_at >=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThan(Date value) { |
|||
addCriterion("created_at <", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("created_at <=", value, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtIn(List<Date> values) { |
|||
addCriterion("created_at in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotIn(List<Date> values) { |
|||
addCriterion("created_at not in", values, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("created_at between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andCreatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("created_at not between", value1, value2, "createdAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNull() { |
|||
addCriterion("updated_at is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIsNotNull() { |
|||
addCriterion("updated_at is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtEqualTo(Date value) { |
|||
addCriterion("updated_at =", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotEqualTo(Date value) { |
|||
addCriterion("updated_at <>", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThan(Date value) { |
|||
addCriterion("updated_at >", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at >=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThan(Date value) { |
|||
addCriterion("updated_at <", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtLessThanOrEqualTo(Date value) { |
|||
addCriterion("updated_at <=", value, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtIn(List<Date> values) { |
|||
addCriterion("updated_at in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotIn(List<Date> values) { |
|||
addCriterion("updated_at not in", values, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andUpdatedAtNotBetween(Date value1, Date value2) { |
|||
addCriterion("updated_at not between", value1, value2, "updatedAt"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNull() { |
|||
addCriterion("rec_status is null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIsNotNull() { |
|||
addCriterion("rec_status is not null"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusEqualTo(Byte value) { |
|||
addCriterion("rec_status =", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotEqualTo(Byte value) { |
|||
addCriterion("rec_status <>", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThan(Byte value) { |
|||
addCriterion("rec_status >", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusGreaterThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status >=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThan(Byte value) { |
|||
addCriterion("rec_status <", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusLessThanOrEqualTo(Byte value) { |
|||
addCriterion("rec_status <=", value, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusIn(List<Byte> values) { |
|||
addCriterion("rec_status in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotIn(List<Byte> values) { |
|||
addCriterion("rec_status not in", values, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
|
|||
public Criteria andRecStatusNotBetween(Byte value1, Byte value2) { |
|||
addCriterion("rec_status not between", value1, value2, "recStatus"); |
|||
return (Criteria) this; |
|||
} |
|||
} |
|||
|
|||
public static class Criteria extends GeneratedCriteria { |
|||
|
|||
protected Criteria() { |
|||
super(); |
|||
} |
|||
} |
|||
|
|||
public static class Criterion { |
|||
private String condition; |
|||
|
|||
private Object value; |
|||
|
|||
private Object secondValue; |
|||
|
|||
private boolean noValue; |
|||
|
|||
private boolean singleValue; |
|||
|
|||
private boolean betweenValue; |
|||
|
|||
private boolean listValue; |
|||
|
|||
private String typeHandler; |
|||
|
|||
public String getCondition() { |
|||
return condition; |
|||
} |
|||
|
|||
public Object getValue() { |
|||
return value; |
|||
} |
|||
|
|||
public Object getSecondValue() { |
|||
return secondValue; |
|||
} |
|||
|
|||
public boolean isNoValue() { |
|||
return noValue; |
|||
} |
|||
|
|||
public boolean isSingleValue() { |
|||
return singleValue; |
|||
} |
|||
|
|||
public boolean isBetweenValue() { |
|||
return betweenValue; |
|||
} |
|||
|
|||
public boolean isListValue() { |
|||
return listValue; |
|||
} |
|||
|
|||
public String getTypeHandler() { |
|||
return typeHandler; |
|||
} |
|||
|
|||
protected Criterion(String condition) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.typeHandler = null; |
|||
this.noValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.typeHandler = typeHandler; |
|||
if (value instanceof List<?>) { |
|||
this.listValue = true; |
|||
} else { |
|||
this.singleValue = true; |
|||
} |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value) { |
|||
this(condition, value, null); |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { |
|||
super(); |
|||
this.condition = condition; |
|||
this.value = value; |
|||
this.secondValue = secondValue; |
|||
this.typeHandler = typeHandler; |
|||
this.betweenValue = true; |
|||
} |
|||
|
|||
protected Criterion(String condition, Object value, Object secondValue) { |
|||
this(condition, value, secondValue, null); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,26 @@ |
|||
package com.ccsens.wisdomcar.bean.vo; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: 上传图片和记录 |
|||
* @author: |
|||
* @time: |
|||
*/ |
|||
@Data |
|||
public class OtherRecordsVo { |
|||
|
|||
|
|||
@Data |
|||
@ApiModel("查询上传图片和记录") |
|||
public static class Query { |
|||
@ApiModelProperty("类型(0-图片,1-文本)") |
|||
private byte type; |
|||
@ApiModelProperty("内容") |
|||
private String comment; |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.Hospital; |
|||
import com.ccsens.wisdomcar.bean.po.HospitalExample; |
|||
import com.ccsens.wisdomcar.persist.mapper.HospitalMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface HospitalDao extends HospitalMapper { |
|||
|
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.HospitalMember; |
|||
import com.ccsens.wisdomcar.bean.po.HospitalMemberExample; |
|||
import com.ccsens.wisdomcar.persist.mapper.HospitalMemberMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface HospitalMemberDao extends HospitalMemberMapper { |
|||
|
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.HospitalWroking; |
|||
import com.ccsens.wisdomcar.bean.po.HospitalWrokingExample; |
|||
import com.ccsens.wisdomcar.persist.mapper.HospitalWrokingMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface HospitalWrokingDao extends HospitalWrokingMapper { |
|||
|
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientData; |
|||
import com.ccsens.wisdomcar.bean.po.PatientDataExample; |
|||
import com.ccsens.wisdomcar.persist.mapper.PatientDataMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface PatientDataDao extends PatientDataMapper { |
|||
|
|||
} |
@ -0,0 +1,14 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
|
|||
import com.ccsens.wisdomcar.persist.mapper.PatientFamilyMapper; |
|||
|
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface PatientFamilyDao extends PatientFamilyMapper { |
|||
|
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientProject; |
|||
import com.ccsens.wisdomcar.bean.po.PatientProjectExample; |
|||
import com.ccsens.wisdomcar.persist.mapper.PatientProjectMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface PatientProjectDao extends PatientProjectMapper { |
|||
|
|||
} |
@ -0,0 +1,11 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.persist.mapper.PatientWisdomCarMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
public interface PatientWisdomCarDao extends PatientWisdomCarMapper { |
|||
|
|||
List<Long> queryByNew(@Param("id")Long id); |
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.ccsens.wisdomcar.persist.dao; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.StepTask; |
|||
import com.ccsens.wisdomcar.bean.po.StepTaskExample; |
|||
import com.ccsens.wisdomcar.persist.mapper.StepTaskMapper; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author 马 |
|||
*/ |
|||
public interface StepTaskDao extends StepTaskMapper { |
|||
|
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.Hospital; |
|||
import com.ccsens.wisdomcar.bean.po.HospitalExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface HospitalMapper { |
|||
long countByExample(HospitalExample example); |
|||
|
|||
int deleteByExample(HospitalExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(Hospital record); |
|||
|
|||
int insertSelective(Hospital record); |
|||
|
|||
List<Hospital> selectByExample(HospitalExample example); |
|||
|
|||
Hospital selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") Hospital record, @Param("example") HospitalExample example); |
|||
|
|||
int updateByExample(@Param("record") Hospital record, @Param("example") HospitalExample example); |
|||
|
|||
int updateByPrimaryKeySelective(Hospital record); |
|||
|
|||
int updateByPrimaryKey(Hospital record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.HospitalMember; |
|||
import com.ccsens.wisdomcar.bean.po.HospitalMemberExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface HospitalMemberMapper { |
|||
long countByExample(HospitalMemberExample example); |
|||
|
|||
int deleteByExample(HospitalMemberExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(HospitalMember record); |
|||
|
|||
int insertSelective(HospitalMember record); |
|||
|
|||
List<HospitalMember> selectByExample(HospitalMemberExample example); |
|||
|
|||
HospitalMember selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") HospitalMember record, @Param("example") HospitalMemberExample example); |
|||
|
|||
int updateByExample(@Param("record") HospitalMember record, @Param("example") HospitalMemberExample example); |
|||
|
|||
int updateByPrimaryKeySelective(HospitalMember record); |
|||
|
|||
int updateByPrimaryKey(HospitalMember record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.HospitalWroking; |
|||
import com.ccsens.wisdomcar.bean.po.HospitalWrokingExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface HospitalWrokingMapper { |
|||
long countByExample(HospitalWrokingExample example); |
|||
|
|||
int deleteByExample(HospitalWrokingExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(HospitalWroking record); |
|||
|
|||
int insertSelective(HospitalWroking record); |
|||
|
|||
List<HospitalWroking> selectByExample(HospitalWrokingExample example); |
|||
|
|||
HospitalWroking selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") HospitalWroking record, @Param("example") HospitalWrokingExample example); |
|||
|
|||
int updateByExample(@Param("record") HospitalWroking record, @Param("example") HospitalWrokingExample example); |
|||
|
|||
int updateByPrimaryKeySelective(HospitalWroking record); |
|||
|
|||
int updateByPrimaryKey(HospitalWroking record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientData; |
|||
import com.ccsens.wisdomcar.bean.po.PatientDataExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface PatientDataMapper { |
|||
long countByExample(PatientDataExample example); |
|||
|
|||
int deleteByExample(PatientDataExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(PatientData record); |
|||
|
|||
int insertSelective(PatientData record); |
|||
|
|||
List<PatientData> selectByExample(PatientDataExample example); |
|||
|
|||
PatientData selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") PatientData record, @Param("example") PatientDataExample example); |
|||
|
|||
int updateByExample(@Param("record") PatientData record, @Param("example") PatientDataExample example); |
|||
|
|||
int updateByPrimaryKeySelective(PatientData record); |
|||
|
|||
int updateByPrimaryKey(PatientData record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientFamily; |
|||
import com.ccsens.wisdomcar.bean.po.PatientFamilyExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface PatientFamilyMapper { |
|||
long countByExample(PatientFamilyExample example); |
|||
|
|||
int deleteByExample(PatientFamilyExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(PatientFamily record); |
|||
|
|||
int insertSelective(PatientFamily record); |
|||
|
|||
List<PatientFamily> selectByExample(PatientFamilyExample example); |
|||
|
|||
PatientFamily selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") PatientFamily record, @Param("example") PatientFamilyExample example); |
|||
|
|||
int updateByExample(@Param("record") PatientFamily record, @Param("example") PatientFamilyExample example); |
|||
|
|||
int updateByPrimaryKeySelective(PatientFamily record); |
|||
|
|||
int updateByPrimaryKey(PatientFamily record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientInformationRecord; |
|||
import com.ccsens.wisdomcar.bean.po.PatientInformationRecordExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface PatientInformationRecordMapper { |
|||
long countByExample(PatientInformationRecordExample example); |
|||
|
|||
int deleteByExample(PatientInformationRecordExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(PatientInformationRecord record); |
|||
|
|||
int insertSelective(PatientInformationRecord record); |
|||
|
|||
List<PatientInformationRecord> selectByExample(PatientInformationRecordExample example); |
|||
|
|||
PatientInformationRecord selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") PatientInformationRecord record, @Param("example") PatientInformationRecordExample example); |
|||
|
|||
int updateByExample(@Param("record") PatientInformationRecord record, @Param("example") PatientInformationRecordExample example); |
|||
|
|||
int updateByPrimaryKeySelective(PatientInformationRecord record); |
|||
|
|||
int updateByPrimaryKey(PatientInformationRecord record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientProject; |
|||
import com.ccsens.wisdomcar.bean.po.PatientProjectExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface PatientProjectMapper { |
|||
long countByExample(PatientProjectExample example); |
|||
|
|||
int deleteByExample(PatientProjectExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(PatientProject record); |
|||
|
|||
int insertSelective(PatientProject record); |
|||
|
|||
List<PatientProject> selectByExample(PatientProjectExample example); |
|||
|
|||
PatientProject selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") PatientProject record, @Param("example") PatientProjectExample example); |
|||
|
|||
int updateByExample(@Param("record") PatientProject record, @Param("example") PatientProjectExample example); |
|||
|
|||
int updateByPrimaryKeySelective(PatientProject record); |
|||
|
|||
int updateByPrimaryKey(PatientProject record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.PatientWisdomCar; |
|||
import com.ccsens.wisdomcar.bean.po.PatientWisdomCarExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface PatientWisdomCarMapper { |
|||
long countByExample(PatientWisdomCarExample example); |
|||
|
|||
int deleteByExample(PatientWisdomCarExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(PatientWisdomCar record); |
|||
|
|||
int insertSelective(PatientWisdomCar record); |
|||
|
|||
List<PatientWisdomCar> selectByExample(PatientWisdomCarExample example); |
|||
|
|||
PatientWisdomCar selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") PatientWisdomCar record, @Param("example") PatientWisdomCarExample example); |
|||
|
|||
int updateByExample(@Param("record") PatientWisdomCar record, @Param("example") PatientWisdomCarExample example); |
|||
|
|||
int updateByPrimaryKeySelective(PatientWisdomCar record); |
|||
|
|||
int updateByPrimaryKey(PatientWisdomCar record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.wisdomcar.persist.mapper; |
|||
|
|||
import com.ccsens.wisdomcar.bean.po.StepTask; |
|||
import com.ccsens.wisdomcar.bean.po.StepTaskExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface StepTaskMapper { |
|||
long countByExample(StepTaskExample example); |
|||
|
|||
int deleteByExample(StepTaskExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(StepTask record); |
|||
|
|||
int insertSelective(StepTask record); |
|||
|
|||
List<StepTask> selectByExample(StepTaskExample example); |
|||
|
|||
StepTask selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") StepTask record, @Param("example") StepTaskExample example); |
|||
|
|||
int updateByExample(@Param("record") StepTask record, @Param("example") StepTaskExample example); |
|||
|
|||
int updateByPrimaryKeySelective(StepTask record); |
|||
|
|||
int updateByPrimaryKey(StepTask record); |
|||
} |
@ -0,0 +1,24 @@ |
|||
package com.ccsens.wisdomcar.service; |
|||
|
|||
import com.ccsens.wisdomcar.bean.dto.Message.CarRecordMessageDto; |
|||
import com.ccsens.wisdomcar.bean.dto.OtherRecordsDto; |
|||
import com.ccsens.wisdomcar.bean.vo.OtherRecordsVo; |
|||
|
|||
import java.util.List; |
|||
|
|||
public interface IOtherRecordsService { |
|||
|
|||
/** |
|||
* 上传图片和记录 |
|||
* @param |
|||
* @throws |
|||
*/ |
|||
void upload(OtherRecordsDto.PicturesAndRecords param); |
|||
|
|||
/** |
|||
* 查询上传图片和记录 |
|||
* @param |
|||
* @throws |
|||
*/ |
|||
List<OtherRecordsVo.Query> query(OtherRecordsDto.Query param); |
|||
} |
@ -0,0 +1,96 @@ |
|||
package com.ccsens.wisdomcar.service; |
|||
|
|||
import cn.hutool.core.lang.Snowflake; |
|||
import cn.hutool.core.util.ObjectUtil; |
|||
import com.ccsens.util.StringUtil; |
|||
import com.ccsens.wisdomcar.bean.dto.OtherRecordsDto; |
|||
import com.ccsens.wisdomcar.bean.po.PatientInformationRecord; |
|||
import com.ccsens.wisdomcar.bean.po.PatientInformationRecordExample; |
|||
import com.ccsens.wisdomcar.bean.po.PatientWisdomCar; |
|||
import com.ccsens.wisdomcar.bean.po.PatientWisdomCarExample; |
|||
import com.ccsens.wisdomcar.bean.vo.OtherRecordsVo; |
|||
import com.ccsens.wisdomcar.persist.dao.PatientWisdomCarDao; |
|||
import com.ccsens.wisdomcar.persist.mapper.PatientInformationRecordMapper; |
|||
import com.ccsens.wisdomcar.persist.mapper.PatientWisdomCarMapper; |
|||
import com.ccsens.wisdomcar.persist.mapper.WisdomCarMapper; |
|||
import com.google.common.collect.Lists; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.apache.commons.collections.CollectionUtils; |
|||
import org.springframework.stereotype.Service; |
|||
import org.springframework.transaction.annotation.Propagation; |
|||
import org.springframework.transaction.annotation.Transactional; |
|||
|
|||
import javax.annotation.Resource; |
|||
import javax.management.ObjectName; |
|||
import java.util.ArrayList; |
|||
import java.util.Collections; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
@Slf4j |
|||
@Service |
|||
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class) |
|||
public class OtherRecordsService implements IOtherRecordsService { |
|||
|
|||
@Resource |
|||
private PatientWisdomCarMapper patientWisdomCarMapper; |
|||
|
|||
@Resource |
|||
private PatientWisdomCarDao patientWisdomCarDao; |
|||
|
|||
@Resource |
|||
private PatientInformationRecordMapper patientInformationRecordMapper; |
|||
|
|||
@Resource |
|||
private Snowflake snowflake; |
|||
|
|||
|
|||
@Override |
|||
public void upload(OtherRecordsDto.PicturesAndRecords param) { |
|||
//通过t_patient_information_record里面的分解任务id 找到患者平车id 最新的 拿到患者平车id t_patient_information_record
|
|||
List<Long> longs = patientWisdomCarDao.queryByNew(param.getId()); //拿到患者平车id
|
|||
if(ObjectUtil.isNotNull(longs)){ |
|||
if(param.getPictures().size()!=0){ //判断是否是图片是否为空
|
|||
for (int i = 0; i < param.getPictures().size(); i++) { |
|||
PatientInformationRecord patientInformationRecord = new PatientInformationRecord(); |
|||
patientInformationRecord.setId(snowflake.nextId()); |
|||
patientInformationRecord.setPatientCarId(longs.get(0)); |
|||
patientInformationRecord.setTaskSubId(param.getId()); |
|||
patientInformationRecord.setInformationType((byte) 0); //上传图片
|
|||
patientInformationRecord.setContent(param.getPictures().get(i)); //拿到图片 存到库里面
|
|||
patientInformationRecord.setRecStatus((byte) 0); |
|||
patientInformationRecordMapper.insertSelective(patientInformationRecord); |
|||
} |
|||
} |
|||
if(!StringUtil.isEmpty(param.getRecords())) { //判断是否是记录是否为空
|
|||
PatientInformationRecord patientInformationRecord = new PatientInformationRecord(); |
|||
patientInformationRecord.setId(snowflake.nextId()); |
|||
patientInformationRecord.setPatientCarId(longs.get(0)); |
|||
patientInformationRecord.setTaskSubId(param.getId()); |
|||
patientInformationRecord.setInformationType((byte) 1); //上传记录
|
|||
patientInformationRecord.setContent(param.getRecords()); //拿到记录 存到库里面
|
|||
patientInformationRecord.setRecStatus((byte) 0); |
|||
patientInformationRecordMapper.insertSelective(patientInformationRecord); |
|||
} |
|||
} |
|||
} |
|||
|
|||
@Override |
|||
public List<OtherRecordsVo.Query> query(OtherRecordsDto.Query param) { |
|||
List<OtherRecordsVo.Query> patientInformationRecordList = new ArrayList<>(); |
|||
//通过任务id 找到创建的最新的
|
|||
List<Long> longs = patientWisdomCarDao.queryByNew(param.getId()); //拿到患者平车id
|
|||
if(ObjectUtil.isNotNull(longs)){ |
|||
PatientInformationRecordExample patientInformationRecordExample = new PatientInformationRecordExample(); |
|||
patientInformationRecordExample.createCriteria().andPatientCarIdEqualTo(longs.get(0)).andTaskSubIdEqualTo(param.getId()); |
|||
List<PatientInformationRecord> patientInformationRecords = patientInformationRecordMapper.selectByExample(patientInformationRecordExample); |
|||
for (PatientInformationRecord patientInformationRecord : patientInformationRecords) { |
|||
OtherRecordsVo.Query query = new OtherRecordsVo.Query(); |
|||
query.setComment(patientInformationRecord.getContent()); |
|||
query.setType(patientInformationRecord.getInformationType()); |
|||
patientInformationRecordList.add(query); |
|||
} |
|||
} |
|||
return patientInformationRecordList; |
|||
} |
|||
} |
@ -1,6 +1,6 @@ |
|||
spring: |
|||
profiles: |
|||
active: prod |
|||
include: common, util-prod |
|||
active: dev |
|||
include: common, util-dev |
|||
|
|||
|
|||
|
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.HospitalDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.HospitalMemberDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.HospitalWrokingDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.PatientDataDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.PatientFamilyDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.PatientProjectDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,17 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.PatientWisdomCarDao"> |
|||
|
|||
|
|||
<select id="queryByNew" parameterType="java.util.Map" resultType="Long"> |
|||
Select |
|||
c.id |
|||
From |
|||
`t_patient_wisdom_car` c |
|||
WHERE c.task_sub_id=#{id} |
|||
order by |
|||
c.`created_at` |
|||
desc |
|||
limit 1 |
|||
</select> |
|||
</mapper> |
@ -0,0 +1,5 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.dao.StepTaskDao"> |
|||
|
|||
</mapper> |
@ -0,0 +1,259 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.HospitalMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.Hospital"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="hospital_code" jdbcType="VARCHAR" property="hospitalCode" /> |
|||
<result column="hospital_name" jdbcType="VARCHAR" property="hospitalName" /> |
|||
<result column="hospital_short_name" jdbcType="VARCHAR" property="hospitalShortName" /> |
|||
<result column="hospital_intro" jdbcType="VARCHAR" property="hospitalIntro" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, hospital_code, hospital_name, hospital_short_name, hospital_intro, created_at, |
|||
updated_at, rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_hospital |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_hospital |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_hospital |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalExample"> |
|||
delete from t_hospital |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.Hospital"> |
|||
insert into t_hospital (id, hospital_code, hospital_name, |
|||
hospital_short_name, hospital_intro, created_at, |
|||
updated_at, rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{hospitalCode,jdbcType=VARCHAR}, #{hospitalName,jdbcType=VARCHAR}, |
|||
#{hospitalShortName,jdbcType=VARCHAR}, #{hospitalIntro,jdbcType=VARCHAR}, #{createdAt,jdbcType=TIMESTAMP}, |
|||
#{updatedAt,jdbcType=TIMESTAMP}, #{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.Hospital"> |
|||
insert into t_hospital |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="hospitalCode != null"> |
|||
hospital_code, |
|||
</if> |
|||
<if test="hospitalName != null"> |
|||
hospital_name, |
|||
</if> |
|||
<if test="hospitalShortName != null"> |
|||
hospital_short_name, |
|||
</if> |
|||
<if test="hospitalIntro != null"> |
|||
hospital_intro, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="hospitalCode != null"> |
|||
#{hospitalCode,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="hospitalName != null"> |
|||
#{hospitalName,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="hospitalShortName != null"> |
|||
#{hospitalShortName,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="hospitalIntro != null"> |
|||
#{hospitalIntro,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalExample" resultType="java.lang.Long"> |
|||
select count(*) from t_hospital |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_hospital |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.hospitalCode != null"> |
|||
hospital_code = #{record.hospitalCode,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.hospitalName != null"> |
|||
hospital_name = #{record.hospitalName,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.hospitalShortName != null"> |
|||
hospital_short_name = #{record.hospitalShortName,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.hospitalIntro != null"> |
|||
hospital_intro = #{record.hospitalIntro,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_hospital |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
hospital_code = #{record.hospitalCode,jdbcType=VARCHAR}, |
|||
hospital_name = #{record.hospitalName,jdbcType=VARCHAR}, |
|||
hospital_short_name = #{record.hospitalShortName,jdbcType=VARCHAR}, |
|||
hospital_intro = #{record.hospitalIntro,jdbcType=VARCHAR}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.Hospital"> |
|||
update t_hospital |
|||
<set> |
|||
<if test="hospitalCode != null"> |
|||
hospital_code = #{hospitalCode,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="hospitalName != null"> |
|||
hospital_name = #{hospitalName,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="hospitalShortName != null"> |
|||
hospital_short_name = #{hospitalShortName,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="hospitalIntro != null"> |
|||
hospital_intro = #{hospitalIntro,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.Hospital"> |
|||
update t_hospital |
|||
set hospital_code = #{hospitalCode,jdbcType=VARCHAR}, |
|||
hospital_name = #{hospitalName,jdbcType=VARCHAR}, |
|||
hospital_short_name = #{hospitalShortName,jdbcType=VARCHAR}, |
|||
hospital_intro = #{hospitalIntro,jdbcType=VARCHAR}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,258 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.HospitalMemberMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.HospitalMember"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="position" jdbcType="TINYINT" property="position" /> |
|||
<result column="department" jdbcType="TINYINT" property="department" /> |
|||
<result column="hospital_id" jdbcType="BIGINT" property="hospitalId" /> |
|||
<result column="user_id" jdbcType="BIGINT" property="userId" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, position, department, hospital_id, user_id, created_at, updated_at, rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMemberExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_hospital_member |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_hospital_member |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_hospital_member |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMemberExample"> |
|||
delete from t_hospital_member |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMember"> |
|||
insert into t_hospital_member (id, position, department, |
|||
hospital_id, user_id, created_at, |
|||
updated_at, rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{position,jdbcType=TINYINT}, #{department,jdbcType=TINYINT}, |
|||
#{hospitalId,jdbcType=BIGINT}, #{userId,jdbcType=BIGINT}, #{createdAt,jdbcType=TIMESTAMP}, |
|||
#{updatedAt,jdbcType=TIMESTAMP}, #{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMember"> |
|||
insert into t_hospital_member |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="position != null"> |
|||
position, |
|||
</if> |
|||
<if test="department != null"> |
|||
department, |
|||
</if> |
|||
<if test="hospitalId != null"> |
|||
hospital_id, |
|||
</if> |
|||
<if test="userId != null"> |
|||
user_id, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="position != null"> |
|||
#{position,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="department != null"> |
|||
#{department,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="hospitalId != null"> |
|||
#{hospitalId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="userId != null"> |
|||
#{userId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMemberExample" resultType="java.lang.Long"> |
|||
select count(*) from t_hospital_member |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_hospital_member |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.position != null"> |
|||
position = #{record.position,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.department != null"> |
|||
department = #{record.department,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.hospitalId != null"> |
|||
hospital_id = #{record.hospitalId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.userId != null"> |
|||
user_id = #{record.userId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_hospital_member |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
position = #{record.position,jdbcType=TINYINT}, |
|||
department = #{record.department,jdbcType=TINYINT}, |
|||
hospital_id = #{record.hospitalId,jdbcType=BIGINT}, |
|||
user_id = #{record.userId,jdbcType=BIGINT}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMember"> |
|||
update t_hospital_member |
|||
<set> |
|||
<if test="position != null"> |
|||
position = #{position,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="department != null"> |
|||
department = #{department,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="hospitalId != null"> |
|||
hospital_id = #{hospitalId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="userId != null"> |
|||
user_id = #{userId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.HospitalMember"> |
|||
update t_hospital_member |
|||
set position = #{position,jdbcType=TINYINT}, |
|||
department = #{department,jdbcType=TINYINT}, |
|||
hospital_id = #{hospitalId,jdbcType=BIGINT}, |
|||
user_id = #{userId,jdbcType=BIGINT}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,243 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.HospitalWrokingMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.HospitalWroking"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="start_time" jdbcType="BIGINT" property="startTime" /> |
|||
<result column="end_time" jdbcType="BIGINT" property="endTime" /> |
|||
<result column="hospital_member_id" jdbcType="BIGINT" property="hospitalMemberId" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, start_time, end_time, hospital_member_id, created_at, updated_at, rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWrokingExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_hospital_wroking |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_hospital_wroking |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_hospital_wroking |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWrokingExample"> |
|||
delete from t_hospital_wroking |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWroking"> |
|||
insert into t_hospital_wroking (id, start_time, end_time, |
|||
hospital_member_id, created_at, updated_at, |
|||
rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{startTime,jdbcType=BIGINT}, #{endTime,jdbcType=BIGINT}, |
|||
#{hospitalMemberId,jdbcType=BIGINT}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedAt,jdbcType=TIMESTAMP}, |
|||
#{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWroking"> |
|||
insert into t_hospital_wroking |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
start_time, |
|||
</if> |
|||
<if test="endTime != null"> |
|||
end_time, |
|||
</if> |
|||
<if test="hospitalMemberId != null"> |
|||
hospital_member_id, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
#{startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="endTime != null"> |
|||
#{endTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="hospitalMemberId != null"> |
|||
#{hospitalMemberId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWrokingExample" resultType="java.lang.Long"> |
|||
select count(*) from t_hospital_wroking |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_hospital_wroking |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.startTime != null"> |
|||
start_time = #{record.startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.endTime != null"> |
|||
end_time = #{record.endTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.hospitalMemberId != null"> |
|||
hospital_member_id = #{record.hospitalMemberId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_hospital_wroking |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
start_time = #{record.startTime,jdbcType=BIGINT}, |
|||
end_time = #{record.endTime,jdbcType=BIGINT}, |
|||
hospital_member_id = #{record.hospitalMemberId,jdbcType=BIGINT}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWroking"> |
|||
update t_hospital_wroking |
|||
<set> |
|||
<if test="startTime != null"> |
|||
start_time = #{startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="endTime != null"> |
|||
end_time = #{endTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="hospitalMemberId != null"> |
|||
hospital_member_id = #{hospitalMemberId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.HospitalWroking"> |
|||
update t_hospital_wroking |
|||
set start_time = #{startTime,jdbcType=BIGINT}, |
|||
end_time = #{endTime,jdbcType=BIGINT}, |
|||
hospital_member_id = #{hospitalMemberId,jdbcType=BIGINT}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,338 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.PatientDataMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.PatientData"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="patient_car_id" jdbcType="BIGINT" property="patientCarId" /> |
|||
<result column="wisdom_car_record_id" jdbcType="BIGINT" property="wisdomCarRecordId" /> |
|||
<result column="user_id" jdbcType="BIGINT" property="userId" /> |
|||
<result column="task_sub_id" jdbcType="BIGINT" property="taskSubId" /> |
|||
<result column="step_id" jdbcType="BIGINT" property="stepId" /> |
|||
<result column="step_status" jdbcType="TINYINT" property="stepStatus" /> |
|||
<result column="push_status" jdbcType="TINYINT" property="pushStatus" /> |
|||
<result column="start_time" jdbcType="BIGINT" property="startTime" /> |
|||
<result column="type" jdbcType="TINYINT" property="type" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, patient_car_id, wisdom_car_record_id, user_id, task_sub_id, step_id, step_status, |
|||
push_status, start_time, type, created_at, updated_at, rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientDataExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_data |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_data |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_patient_data |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientDataExample"> |
|||
delete from t_patient_data |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.PatientData"> |
|||
insert into t_patient_data (id, patient_car_id, wisdom_car_record_id, |
|||
user_id, task_sub_id, step_id, |
|||
step_status, push_status, start_time, |
|||
type, created_at, updated_at, |
|||
rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{patientCarId,jdbcType=BIGINT}, #{wisdomCarRecordId,jdbcType=BIGINT}, |
|||
#{userId,jdbcType=BIGINT}, #{taskSubId,jdbcType=BIGINT}, #{stepId,jdbcType=BIGINT}, |
|||
#{stepStatus,jdbcType=TINYINT}, #{pushStatus,jdbcType=TINYINT}, #{startTime,jdbcType=BIGINT}, |
|||
#{type,jdbcType=TINYINT}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedAt,jdbcType=TIMESTAMP}, |
|||
#{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientData"> |
|||
insert into t_patient_data |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="patientCarId != null"> |
|||
patient_car_id, |
|||
</if> |
|||
<if test="wisdomCarRecordId != null"> |
|||
wisdom_car_record_id, |
|||
</if> |
|||
<if test="userId != null"> |
|||
user_id, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id, |
|||
</if> |
|||
<if test="stepId != null"> |
|||
step_id, |
|||
</if> |
|||
<if test="stepStatus != null"> |
|||
step_status, |
|||
</if> |
|||
<if test="pushStatus != null"> |
|||
push_status, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
start_time, |
|||
</if> |
|||
<if test="type != null"> |
|||
type, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="patientCarId != null"> |
|||
#{patientCarId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="wisdomCarRecordId != null"> |
|||
#{wisdomCarRecordId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="userId != null"> |
|||
#{userId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
#{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="stepId != null"> |
|||
#{stepId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="stepStatus != null"> |
|||
#{stepStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="pushStatus != null"> |
|||
#{pushStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
#{startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="type != null"> |
|||
#{type,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientDataExample" resultType="java.lang.Long"> |
|||
select count(*) from t_patient_data |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_patient_data |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.patientCarId != null"> |
|||
patient_car_id = #{record.patientCarId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.wisdomCarRecordId != null"> |
|||
wisdom_car_record_id = #{record.wisdomCarRecordId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.userId != null"> |
|||
user_id = #{record.userId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.taskSubId != null"> |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.stepId != null"> |
|||
step_id = #{record.stepId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.stepStatus != null"> |
|||
step_status = #{record.stepStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.pushStatus != null"> |
|||
push_status = #{record.pushStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.startTime != null"> |
|||
start_time = #{record.startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.type != null"> |
|||
type = #{record.type,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_patient_data |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
patient_car_id = #{record.patientCarId,jdbcType=BIGINT}, |
|||
wisdom_car_record_id = #{record.wisdomCarRecordId,jdbcType=BIGINT}, |
|||
user_id = #{record.userId,jdbcType=BIGINT}, |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
step_id = #{record.stepId,jdbcType=BIGINT}, |
|||
step_status = #{record.stepStatus,jdbcType=TINYINT}, |
|||
push_status = #{record.pushStatus,jdbcType=TINYINT}, |
|||
start_time = #{record.startTime,jdbcType=BIGINT}, |
|||
type = #{record.type,jdbcType=TINYINT}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientData"> |
|||
update t_patient_data |
|||
<set> |
|||
<if test="patientCarId != null"> |
|||
patient_car_id = #{patientCarId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="wisdomCarRecordId != null"> |
|||
wisdom_car_record_id = #{wisdomCarRecordId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="userId != null"> |
|||
user_id = #{userId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="stepId != null"> |
|||
step_id = #{stepId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="stepStatus != null"> |
|||
step_status = #{stepStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="pushStatus != null"> |
|||
push_status = #{pushStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
start_time = #{startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="type != null"> |
|||
type = #{type,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.PatientData"> |
|||
update t_patient_data |
|||
set patient_car_id = #{patientCarId,jdbcType=BIGINT}, |
|||
wisdom_car_record_id = #{wisdomCarRecordId,jdbcType=BIGINT}, |
|||
user_id = #{userId,jdbcType=BIGINT}, |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
step_id = #{stepId,jdbcType=BIGINT}, |
|||
step_status = #{stepStatus,jdbcType=TINYINT}, |
|||
push_status = #{pushStatus,jdbcType=TINYINT}, |
|||
start_time = #{startTime,jdbcType=BIGINT}, |
|||
type = #{type,jdbcType=TINYINT}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,243 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.PatientFamilyMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.PatientFamily"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="name" jdbcType="VARCHAR" property="name" /> |
|||
<result column="phone" jdbcType="VARCHAR" property="phone" /> |
|||
<result column="patient_id" jdbcType="BIGINT" property="patientId" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, name, phone, patient_id, created_at, updated_at, rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamilyExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_family |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_family |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_patient_family |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamilyExample"> |
|||
delete from t_patient_family |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamily"> |
|||
insert into t_patient_family (id, name, phone, |
|||
patient_id, created_at, updated_at, |
|||
rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{name,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, |
|||
#{patientId,jdbcType=BIGINT}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedAt,jdbcType=TIMESTAMP}, |
|||
#{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamily"> |
|||
insert into t_patient_family |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="name != null"> |
|||
name, |
|||
</if> |
|||
<if test="phone != null"> |
|||
phone, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
patient_id, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="name != null"> |
|||
#{name,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="phone != null"> |
|||
#{phone,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
#{patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamilyExample" resultType="java.lang.Long"> |
|||
select count(*) from t_patient_family |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_patient_family |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.name != null"> |
|||
name = #{record.name,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.phone != null"> |
|||
phone = #{record.phone,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.patientId != null"> |
|||
patient_id = #{record.patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_patient_family |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
name = #{record.name,jdbcType=VARCHAR}, |
|||
phone = #{record.phone,jdbcType=VARCHAR}, |
|||
patient_id = #{record.patientId,jdbcType=BIGINT}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamily"> |
|||
update t_patient_family |
|||
<set> |
|||
<if test="name != null"> |
|||
name = #{name,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="phone != null"> |
|||
phone = #{phone,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
patient_id = #{patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.PatientFamily"> |
|||
update t_patient_family |
|||
set name = #{name,jdbcType=VARCHAR}, |
|||
phone = #{phone,jdbcType=VARCHAR}, |
|||
patient_id = #{patientId,jdbcType=BIGINT}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,259 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.PatientInformationRecordMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.PatientInformationRecord"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="patient_car_id" jdbcType="BIGINT" property="patientCarId" /> |
|||
<result column="task_sub_id" jdbcType="BIGINT" property="taskSubId" /> |
|||
<result column="information_type" jdbcType="TINYINT" property="informationType" /> |
|||
<result column="content" jdbcType="VARCHAR" property="content" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, patient_car_id, task_sub_id, information_type, content, created_at, updated_at, |
|||
rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecordExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_information_record |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_information_record |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_patient_information_record |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecordExample"> |
|||
delete from t_patient_information_record |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecord"> |
|||
insert into t_patient_information_record (id, patient_car_id, task_sub_id, |
|||
information_type, content, created_at, |
|||
updated_at, rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{patientCarId,jdbcType=BIGINT}, #{taskSubId,jdbcType=BIGINT}, |
|||
#{informationType,jdbcType=TINYINT}, #{content,jdbcType=VARCHAR}, #{createdAt,jdbcType=TIMESTAMP}, |
|||
#{updatedAt,jdbcType=TIMESTAMP}, #{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecord"> |
|||
insert into t_patient_information_record |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="patientCarId != null"> |
|||
patient_car_id, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id, |
|||
</if> |
|||
<if test="informationType != null"> |
|||
information_type, |
|||
</if> |
|||
<if test="content != null"> |
|||
content, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="patientCarId != null"> |
|||
#{patientCarId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
#{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="informationType != null"> |
|||
#{informationType,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="content != null"> |
|||
#{content,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecordExample" resultType="java.lang.Long"> |
|||
select count(*) from t_patient_information_record |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_patient_information_record |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.patientCarId != null"> |
|||
patient_car_id = #{record.patientCarId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.taskSubId != null"> |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.informationType != null"> |
|||
information_type = #{record.informationType,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.content != null"> |
|||
content = #{record.content,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_patient_information_record |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
patient_car_id = #{record.patientCarId,jdbcType=BIGINT}, |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
information_type = #{record.informationType,jdbcType=TINYINT}, |
|||
content = #{record.content,jdbcType=VARCHAR}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecord"> |
|||
update t_patient_information_record |
|||
<set> |
|||
<if test="patientCarId != null"> |
|||
patient_car_id = #{patientCarId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="informationType != null"> |
|||
information_type = #{informationType,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="content != null"> |
|||
content = #{content,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.PatientInformationRecord"> |
|||
update t_patient_information_record |
|||
set patient_car_id = #{patientCarId,jdbcType=BIGINT}, |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
information_type = #{informationType,jdbcType=TINYINT}, |
|||
content = #{content,jdbcType=VARCHAR}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,306 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.PatientProjectMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.PatientProject"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="medical_record_num" jdbcType="VARCHAR" property="medicalRecordNum" /> |
|||
<result column="name" jdbcType="VARCHAR" property="name" /> |
|||
<result column="sex" jdbcType="TINYINT" property="sex" /> |
|||
<result column="age" jdbcType="INTEGER" property="age" /> |
|||
<result column="id_card" jdbcType="VARCHAR" property="idCard" /> |
|||
<result column="phone" jdbcType="VARCHAR" property="phone" /> |
|||
<result column="project_id" jdbcType="BIGINT" property="projectId" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, medical_record_num, name, sex, age, id_card, phone, project_id, created_at, updated_at, |
|||
rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientProjectExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_project |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_project |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_patient_project |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientProjectExample"> |
|||
delete from t_patient_project |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.PatientProject"> |
|||
insert into t_patient_project (id, medical_record_num, name, |
|||
sex, age, id_card, phone, |
|||
project_id, created_at, updated_at, |
|||
rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{medicalRecordNum,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, |
|||
#{sex,jdbcType=TINYINT}, #{age,jdbcType=INTEGER}, #{idCard,jdbcType=VARCHAR}, #{phone,jdbcType=VARCHAR}, |
|||
#{projectId,jdbcType=BIGINT}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedAt,jdbcType=TIMESTAMP}, |
|||
#{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientProject"> |
|||
insert into t_patient_project |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="medicalRecordNum != null"> |
|||
medical_record_num, |
|||
</if> |
|||
<if test="name != null"> |
|||
name, |
|||
</if> |
|||
<if test="sex != null"> |
|||
sex, |
|||
</if> |
|||
<if test="age != null"> |
|||
age, |
|||
</if> |
|||
<if test="idCard != null"> |
|||
id_card, |
|||
</if> |
|||
<if test="phone != null"> |
|||
phone, |
|||
</if> |
|||
<if test="projectId != null"> |
|||
project_id, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="medicalRecordNum != null"> |
|||
#{medicalRecordNum,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="name != null"> |
|||
#{name,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="sex != null"> |
|||
#{sex,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="age != null"> |
|||
#{age,jdbcType=INTEGER}, |
|||
</if> |
|||
<if test="idCard != null"> |
|||
#{idCard,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="phone != null"> |
|||
#{phone,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="projectId != null"> |
|||
#{projectId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientProjectExample" resultType="java.lang.Long"> |
|||
select count(*) from t_patient_project |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_patient_project |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.medicalRecordNum != null"> |
|||
medical_record_num = #{record.medicalRecordNum,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.name != null"> |
|||
name = #{record.name,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.sex != null"> |
|||
sex = #{record.sex,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.age != null"> |
|||
age = #{record.age,jdbcType=INTEGER}, |
|||
</if> |
|||
<if test="record.idCard != null"> |
|||
id_card = #{record.idCard,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.phone != null"> |
|||
phone = #{record.phone,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="record.projectId != null"> |
|||
project_id = #{record.projectId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_patient_project |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
medical_record_num = #{record.medicalRecordNum,jdbcType=VARCHAR}, |
|||
name = #{record.name,jdbcType=VARCHAR}, |
|||
sex = #{record.sex,jdbcType=TINYINT}, |
|||
age = #{record.age,jdbcType=INTEGER}, |
|||
id_card = #{record.idCard,jdbcType=VARCHAR}, |
|||
phone = #{record.phone,jdbcType=VARCHAR}, |
|||
project_id = #{record.projectId,jdbcType=BIGINT}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientProject"> |
|||
update t_patient_project |
|||
<set> |
|||
<if test="medicalRecordNum != null"> |
|||
medical_record_num = #{medicalRecordNum,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="name != null"> |
|||
name = #{name,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="sex != null"> |
|||
sex = #{sex,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="age != null"> |
|||
age = #{age,jdbcType=INTEGER}, |
|||
</if> |
|||
<if test="idCard != null"> |
|||
id_card = #{idCard,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="phone != null"> |
|||
phone = #{phone,jdbcType=VARCHAR}, |
|||
</if> |
|||
<if test="projectId != null"> |
|||
project_id = #{projectId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.PatientProject"> |
|||
update t_patient_project |
|||
set medical_record_num = #{medicalRecordNum,jdbcType=VARCHAR}, |
|||
name = #{name,jdbcType=VARCHAR}, |
|||
sex = #{sex,jdbcType=TINYINT}, |
|||
age = #{age,jdbcType=INTEGER}, |
|||
id_card = #{idCard,jdbcType=VARCHAR}, |
|||
phone = #{phone,jdbcType=VARCHAR}, |
|||
project_id = #{projectId,jdbcType=BIGINT}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,291 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.PatientWisdomCarMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.PatientWisdomCar"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="patient_id" jdbcType="BIGINT" property="patientId" /> |
|||
<result column="task_sub_id" jdbcType="BIGINT" property="taskSubId" /> |
|||
<result column="car_id" jdbcType="BIGINT" property="carId" /> |
|||
<result column="start_time" jdbcType="BIGINT" property="startTime" /> |
|||
<result column="end_time" jdbcType="BIGINT" property="endTime" /> |
|||
<result column="is_demo" jdbcType="TINYINT" property="isDemo" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, patient_id, task_sub_id, car_id, start_time, end_time, is_demo, created_at, updated_at, |
|||
rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCarExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_wisdom_car |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_patient_wisdom_car |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_patient_wisdom_car |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCarExample"> |
|||
delete from t_patient_wisdom_car |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCar"> |
|||
insert into t_patient_wisdom_car (id, patient_id, task_sub_id, |
|||
car_id, start_time, end_time, |
|||
is_demo, created_at, updated_at, |
|||
rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{patientId,jdbcType=BIGINT}, #{taskSubId,jdbcType=BIGINT}, |
|||
#{carId,jdbcType=BIGINT}, #{startTime,jdbcType=BIGINT}, #{endTime,jdbcType=BIGINT}, |
|||
#{isDemo,jdbcType=TINYINT}, #{createdAt,jdbcType=TIMESTAMP}, #{updatedAt,jdbcType=TIMESTAMP}, |
|||
#{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCar"> |
|||
insert into t_patient_wisdom_car |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
patient_id, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id, |
|||
</if> |
|||
<if test="carId != null"> |
|||
car_id, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
start_time, |
|||
</if> |
|||
<if test="endTime != null"> |
|||
end_time, |
|||
</if> |
|||
<if test="isDemo != null"> |
|||
is_demo, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
#{patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
#{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="carId != null"> |
|||
#{carId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
#{startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="endTime != null"> |
|||
#{endTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="isDemo != null"> |
|||
#{isDemo,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCarExample" resultType="java.lang.Long"> |
|||
select count(*) from t_patient_wisdom_car |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_patient_wisdom_car |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.patientId != null"> |
|||
patient_id = #{record.patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.taskSubId != null"> |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.carId != null"> |
|||
car_id = #{record.carId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.startTime != null"> |
|||
start_time = #{record.startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.endTime != null"> |
|||
end_time = #{record.endTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.isDemo != null"> |
|||
is_demo = #{record.isDemo,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_patient_wisdom_car |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
patient_id = #{record.patientId,jdbcType=BIGINT}, |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
car_id = #{record.carId,jdbcType=BIGINT}, |
|||
start_time = #{record.startTime,jdbcType=BIGINT}, |
|||
end_time = #{record.endTime,jdbcType=BIGINT}, |
|||
is_demo = #{record.isDemo,jdbcType=TINYINT}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCar"> |
|||
update t_patient_wisdom_car |
|||
<set> |
|||
<if test="patientId != null"> |
|||
patient_id = #{patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="carId != null"> |
|||
car_id = #{carId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="startTime != null"> |
|||
start_time = #{startTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="endTime != null"> |
|||
end_time = #{endTime,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="isDemo != null"> |
|||
is_demo = #{isDemo,jdbcType=TINYINT}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.PatientWisdomCar"> |
|||
update t_patient_wisdom_car |
|||
set patient_id = #{patientId,jdbcType=BIGINT}, |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
car_id = #{carId,jdbcType=BIGINT}, |
|||
start_time = #{startTime,jdbcType=BIGINT}, |
|||
end_time = #{endTime,jdbcType=BIGINT}, |
|||
is_demo = #{isDemo,jdbcType=TINYINT}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
@ -0,0 +1,258 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
<mapper namespace="com.ccsens.wisdomcar.persist.mapper.StepTaskMapper"> |
|||
<resultMap id="BaseResultMap" type="com.ccsens.wisdomcar.bean.po.StepTask"> |
|||
<id column="id" jdbcType="BIGINT" property="id" /> |
|||
<result column="step_id" jdbcType="BIGINT" property="stepId" /> |
|||
<result column="task_sub_id" jdbcType="BIGINT" property="taskSubId" /> |
|||
<result column="patient_id" jdbcType="BIGINT" property="patientId" /> |
|||
<result column="batch" jdbcType="INTEGER" property="batch" /> |
|||
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" /> |
|||
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" /> |
|||
<result column="rec_status" jdbcType="TINYINT" property="recStatus" /> |
|||
</resultMap> |
|||
<sql id="Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Update_By_Example_Where_Clause"> |
|||
<where> |
|||
<foreach collection="example.oredCriteria" item="criteria" separator="or"> |
|||
<if test="criteria.valid"> |
|||
<trim prefix="(" prefixOverrides="and" suffix=")"> |
|||
<foreach collection="criteria.criteria" item="criterion"> |
|||
<choose> |
|||
<when test="criterion.noValue"> |
|||
and ${criterion.condition} |
|||
</when> |
|||
<when test="criterion.singleValue"> |
|||
and ${criterion.condition} #{criterion.value} |
|||
</when> |
|||
<when test="criterion.betweenValue"> |
|||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} |
|||
</when> |
|||
<when test="criterion.listValue"> |
|||
and ${criterion.condition} |
|||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> |
|||
#{listItem} |
|||
</foreach> |
|||
</when> |
|||
</choose> |
|||
</foreach> |
|||
</trim> |
|||
</if> |
|||
</foreach> |
|||
</where> |
|||
</sql> |
|||
<sql id="Base_Column_List"> |
|||
id, step_id, task_sub_id, patient_id, batch, created_at, updated_at, rec_status |
|||
</sql> |
|||
<select id="selectByExample" parameterType="com.ccsens.wisdomcar.bean.po.StepTaskExample" resultMap="BaseResultMap"> |
|||
select |
|||
<if test="distinct"> |
|||
distinct |
|||
</if> |
|||
<include refid="Base_Column_List" /> |
|||
from t_step_task |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
<if test="orderByClause != null"> |
|||
order by ${orderByClause} |
|||
</if> |
|||
</select> |
|||
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> |
|||
select |
|||
<include refid="Base_Column_List" /> |
|||
from t_step_task |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</select> |
|||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> |
|||
delete from t_step_task |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</delete> |
|||
<delete id="deleteByExample" parameterType="com.ccsens.wisdomcar.bean.po.StepTaskExample"> |
|||
delete from t_step_task |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</delete> |
|||
<insert id="insert" parameterType="com.ccsens.wisdomcar.bean.po.StepTask"> |
|||
insert into t_step_task (id, step_id, task_sub_id, |
|||
patient_id, batch, created_at, |
|||
updated_at, rec_status) |
|||
values (#{id,jdbcType=BIGINT}, #{stepId,jdbcType=BIGINT}, #{taskSubId,jdbcType=BIGINT}, |
|||
#{patientId,jdbcType=BIGINT}, #{batch,jdbcType=INTEGER}, #{createdAt,jdbcType=TIMESTAMP}, |
|||
#{updatedAt,jdbcType=TIMESTAMP}, #{recStatus,jdbcType=TINYINT}) |
|||
</insert> |
|||
<insert id="insertSelective" parameterType="com.ccsens.wisdomcar.bean.po.StepTask"> |
|||
insert into t_step_task |
|||
<trim prefix="(" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
id, |
|||
</if> |
|||
<if test="stepId != null"> |
|||
step_id, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
patient_id, |
|||
</if> |
|||
<if test="batch != null"> |
|||
batch, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status, |
|||
</if> |
|||
</trim> |
|||
<trim prefix="values (" suffix=")" suffixOverrides=","> |
|||
<if test="id != null"> |
|||
#{id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="stepId != null"> |
|||
#{stepId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
#{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
#{patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="batch != null"> |
|||
#{batch,jdbcType=INTEGER}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
#{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
#{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
#{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</trim> |
|||
</insert> |
|||
<select id="countByExample" parameterType="com.ccsens.wisdomcar.bean.po.StepTaskExample" resultType="java.lang.Long"> |
|||
select count(*) from t_step_task |
|||
<if test="_parameter != null"> |
|||
<include refid="Example_Where_Clause" /> |
|||
</if> |
|||
</select> |
|||
<update id="updateByExampleSelective" parameterType="map"> |
|||
update t_step_task |
|||
<set> |
|||
<if test="record.id != null"> |
|||
id = #{record.id,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.stepId != null"> |
|||
step_id = #{record.stepId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.taskSubId != null"> |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.patientId != null"> |
|||
patient_id = #{record.patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="record.batch != null"> |
|||
batch = #{record.batch,jdbcType=INTEGER}, |
|||
</if> |
|||
<if test="record.createdAt != null"> |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.updatedAt != null"> |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="record.recStatus != null"> |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByExample" parameterType="map"> |
|||
update t_step_task |
|||
set id = #{record.id,jdbcType=BIGINT}, |
|||
step_id = #{record.stepId,jdbcType=BIGINT}, |
|||
task_sub_id = #{record.taskSubId,jdbcType=BIGINT}, |
|||
patient_id = #{record.patientId,jdbcType=BIGINT}, |
|||
batch = #{record.batch,jdbcType=INTEGER}, |
|||
created_at = #{record.createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{record.updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{record.recStatus,jdbcType=TINYINT} |
|||
<if test="_parameter != null"> |
|||
<include refid="Update_By_Example_Where_Clause" /> |
|||
</if> |
|||
</update> |
|||
<update id="updateByPrimaryKeySelective" parameterType="com.ccsens.wisdomcar.bean.po.StepTask"> |
|||
update t_step_task |
|||
<set> |
|||
<if test="stepId != null"> |
|||
step_id = #{stepId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="taskSubId != null"> |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="patientId != null"> |
|||
patient_id = #{patientId,jdbcType=BIGINT}, |
|||
</if> |
|||
<if test="batch != null"> |
|||
batch = #{batch,jdbcType=INTEGER}, |
|||
</if> |
|||
<if test="createdAt != null"> |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="updatedAt != null"> |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
</if> |
|||
<if test="recStatus != null"> |
|||
rec_status = #{recStatus,jdbcType=TINYINT}, |
|||
</if> |
|||
</set> |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
<update id="updateByPrimaryKey" parameterType="com.ccsens.wisdomcar.bean.po.StepTask"> |
|||
update t_step_task |
|||
set step_id = #{stepId,jdbcType=BIGINT}, |
|||
task_sub_id = #{taskSubId,jdbcType=BIGINT}, |
|||
patient_id = #{patientId,jdbcType=BIGINT}, |
|||
batch = #{batch,jdbcType=INTEGER}, |
|||
created_at = #{createdAt,jdbcType=TIMESTAMP}, |
|||
updated_at = #{updatedAt,jdbcType=TIMESTAMP}, |
|||
rec_status = #{recStatus,jdbcType=TINYINT} |
|||
where id = #{id,jdbcType=BIGINT} |
|||
</update> |
|||
</mapper> |
Loading…
Reference in new issue