结算单增加类型字段

dev
wany 2025-03-14 14:27:45 +08:00
parent 100b1c01e8
commit aff0163cba
1 changed files with 15 additions and 0 deletions

View File

@ -263,4 +263,19 @@ public abstract class BaseTicketReceive<M extends BaseTicketReceive<M>> extends
} }
@JSONField(name="type")
public void setType(Integer type) {
set("type", type);
}
/**
* @return type 1 0
*/
@JSONField(name="type")
public Integer getType() {
return getInt("type");
}
} }