Commit 0f9295803d637009c92c3249122fb0e4d926bbfd

Authored by yeqianyong
1 parent 9351026d

楚江erp:草稿要车单增加“是否冻结”字段

... ... @@ -184,6 +184,12 @@ public class GetDraftRequestCarTicketBo extends BaseBo<DraftRequestCarTicket> {
184 184 @ApiModelProperty("来源")
185 185 private String source;
186 186
  187 + /**
  188 + * 是否冻结
  189 + */
  190 + @ApiModelProperty("是否冻结")
  191 + private boolean freeze;
  192 +
187 193 public GetDraftRequestCarTicketBo() {
188 194
189 195 }
... ...
... ... @@ -159,6 +159,11 @@ public class DraftRequestCarTicket extends BaseEntity implements BaseDto {
159 159 private String source;
160 160
161 161 /**
  162 + * 是否冻结
  163 + */
  164 + private boolean freeze;
  165 +
  166 + /**
162 167 * 是否展示审核按钮
163 168 */
164 169 @TableField(exist = false)
... ...
... ... @@ -63,6 +63,7 @@
63 63 su2.name AS operations_department_auditor_name,
64 64 tb.status,
65 65 tb.source,
  66 + tb.freeze,
66 67 tb.create_by_id,
67 68 tb.create_by,
68 69 tb.update_by_id,
... ...