Browse Source

模糊搜索

v1.0
15989082884@163.com 2 years ago
parent
commit
c1c6ade001
  1. 11
      src/main/java/com/qs/serve/modules/tbs/entity/TbsBudgetLog.java

11
src/main/java/com/qs/serve/modules/tbs/entity/TbsBudgetLog.java

@ -62,6 +62,7 @@ public class TbsBudgetLog implements Serializable {
/** 操作人编号 */ /** 操作人编号 */
@NotBlank(message = "操作人编号不能为空") @NotBlank(message = "操作人编号不能为空")
@Length(max = 32,message = "操作人编号长度不能超过32字") @Length(max = 32,message = "操作人编号长度不能超过32字")
@TableField(condition = SqlCondition.LIKE)
private String optUserCode; private String optUserCode;
/** 预算金额/调整金额/释放金额 */ /** 预算金额/调整金额/释放金额 */
@ -95,6 +96,7 @@ public class TbsBudgetLog implements Serializable {
/** 考核编码 */ /** 考核编码 */
@NotBlank(message = "考核编码不能为空") @NotBlank(message = "考核编码不能为空")
@Length(max = 30,message = "考核编码长度不能超过30字") @Length(max = 30,message = "考核编码长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String itemName; private String itemName;
/** 开始时间 */ /** 开始时间 */
@ -118,11 +120,13 @@ public class TbsBudgetLog implements Serializable {
/** 科目编码 */ /** 科目编码 */
@NotBlank(message = "科目编码不能为空") @NotBlank(message = "科目编码不能为空")
@Length(max = 30,message = "科目编码长度不能超过30字") @Length(max = 30,message = "科目编码长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String subjectCode; private String subjectCode;
/** 科目名称 */ /** 科目名称 */
@NotBlank(message = "科目名称不能为空") @NotBlank(message = "科目名称不能为空")
@Length(max = 30,message = "科目名称长度不能超过30字") @Length(max = 30,message = "科目名称长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String subjectName; private String subjectName;
/** 成本中心类型 */ /** 成本中心类型 */
@ -138,11 +142,13 @@ public class TbsBudgetLog implements Serializable {
/** 成本中心编码 */ /** 成本中心编码 */
@NotBlank(message = "成本中心编码不能为空") @NotBlank(message = "成本中心编码不能为空")
@Length(max = 30,message = "成本中心编码长度不能超过30字") @Length(max = 30,message = "成本中心编码长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String centerCode; private String centerCode;
/** 成本中心名称 */ /** 成本中心名称 */
@NotBlank(message = "成本中心名称不能为空") @NotBlank(message = "成本中心名称不能为空")
@Length(max = 30,message = "成本中心名称长度不能超过30字") @Length(max = 30,message = "成本中心名称长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String centerName; private String centerName;
@ -160,10 +166,12 @@ public class TbsBudgetLog implements Serializable {
/** 客户编码 */ /** 客户编码 */
@Length(max = 30,message = "客户编码长度不能超过30字") @Length(max = 30,message = "客户编码长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String supplierCode; private String supplierCode;
/** 客户名称 */ /** 客户名称 */
@Length(max = 30,message = "客户名称长度不能超过30字") @Length(max = 30,message = "客户名称长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String supplierName; private String supplierName;
/** 活动id */ /** 活动id */
@ -181,6 +189,7 @@ public class TbsBudgetLog implements Serializable {
/** 政策编码 */ /** 政策编码 */
@Length(max = 30,message = "政策编码长度不能超过30字") @Length(max = 30,message = "政策编码长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String policyCode; private String policyCode;
/** 政策标题 */ /** 政策标题 */
@ -199,6 +208,7 @@ public class TbsBudgetLog implements Serializable {
/** 费用申请编码 */ /** 费用申请编码 */
@Length(max = 30,message = "费用申请编码长度不能超过30字") @Length(max = 30,message = "费用申请编码长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String costApplyCode; private String costApplyCode;
/** 费用申请主题 */ /** 费用申请主题 */
@ -242,6 +252,7 @@ public class TbsBudgetLog implements Serializable {
/** 目标名称 */ /** 目标名称 */
@Length(max = 30,message = "目标名称长度不能超过30字") @Length(max = 30,message = "目标名称长度不能超过30字")
@TableField(condition = SqlCondition.LIKE)
private String targetName; private String targetName;
/** 目标等级路径 */ /** 目标等级路径 */

Loading…
Cancel
Save