|
@ -182,6 +182,7 @@ public class TbsBudgetLog implements Serializable { |
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private String activityCode; |
|
|
private String activityCode; |
|
|
|
|
|
|
|
|
|
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private String activityTheme; |
|
|
private String activityTheme; |
|
|
|
|
|
|
|
|
/** 政策id */ |
|
|
/** 政策id */ |
|
@ -194,13 +195,16 @@ public class TbsBudgetLog implements Serializable { |
|
|
|
|
|
|
|
|
/** 政策标题 */ |
|
|
/** 政策标题 */ |
|
|
@Length(max = 255,message = "政策标题长度不能超过255字") |
|
|
@Length(max = 255,message = "政策标题长度不能超过255字") |
|
|
|
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private String policyTitle; |
|
|
private String policyTitle; |
|
|
|
|
|
|
|
|
/** 政策项id */ |
|
|
/** 政策项id */ |
|
|
|
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private Long policyItemId; |
|
|
private Long policyItemId; |
|
|
|
|
|
|
|
|
/** 政策项编码 */ |
|
|
/** 政策项编码 */ |
|
|
@Length(max = 30,message = "政策项编码长度不能超过30字") |
|
|
@Length(max = 30,message = "政策项编码长度不能超过30字") |
|
|
|
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private String policyItemCode; |
|
|
private String policyItemCode; |
|
|
|
|
|
|
|
|
/** 费用申请id */ |
|
|
/** 费用申请id */ |
|
@ -213,6 +217,7 @@ public class TbsBudgetLog implements Serializable { |
|
|
|
|
|
|
|
|
/** 费用申请主题 */ |
|
|
/** 费用申请主题 */ |
|
|
@Length(max = 150,message = "费用申请主题长度不能超过150字") |
|
|
@Length(max = 150,message = "费用申请主题长度不能超过150字") |
|
|
|
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private String costApplyTheme; |
|
|
private String costApplyTheme; |
|
|
|
|
|
|
|
|
/** 备注 */ |
|
|
/** 备注 */ |
|
@ -248,6 +253,7 @@ public class TbsBudgetLog implements Serializable { |
|
|
|
|
|
|
|
|
/** 目标编码 */ |
|
|
/** 目标编码 */ |
|
|
@Length(max = 30,message = "目标编码长度不能超过30字") |
|
|
@Length(max = 30,message = "目标编码长度不能超过30字") |
|
|
|
|
|
@TableField(condition = SqlCondition.LIKE) |
|
|
private String targetCode; |
|
|
private String targetCode; |
|
|
|
|
|
|
|
|
/** 目标名称 */ |
|
|
/** 目标名称 */ |
|
|