韦忠喜提交

master
weizhongxi 3 years ago
parent 6fd2bc1768
commit 029a0fb2e4

@ -82,6 +82,11 @@ public class AbMessage implements Serializable {
@ApiModelProperty(value = "上游推送时间")
private Timestamp pushTime;
/** 添加性别 modify by wzx */
@Column(name = "sex")
@ApiModelProperty(value = "声纹识别性别标签")
private Integer sex;
public void copy(AbMessage source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}

@ -34,6 +34,11 @@ public class AbMessageQueryCriteria{
/** 模糊 */
@Query(type = Query.Type.INNER_LIKE)
private String actName;
/** 精确 查询性别 modify by wzx */
@Query
private Integer sex;
/** BETWEEN */
@Query(type = Query.Type.BETWEEN)
private List<Timestamp> startTime;

@ -106,6 +106,11 @@ public class FormMessage implements Serializable {
@ApiModelProperty(value = "最新推送时间")
private Timestamp pushTime;
/** 添加性别 modify by wzx */
@Column(name = "sex")
@ApiModelProperty(value = "声纹识别性别标签")
private Integer sex;
public void copy(FormMessage source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}

@ -47,6 +47,11 @@ public class FormMessageQueryCriteria{
/** 精确 */
@Query
private Integer device;
/** 精确 查询性别 modify by wzx */
@Query
private Integer sex;
/** BETWEEN */
@Query(type = Query.Type.BETWEEN)
private List<Timestamp> startTime;

Loading…
Cancel
Save