Commit 5d742e1f authored by liwenbin's avatar liwenbin

AssetForm增加callBackUrl参数

parent c3541048
...@@ -40,6 +40,8 @@ public class AssetForm implements Serializable{ ...@@ -40,6 +40,8 @@ public class AssetForm implements Serializable{
private String assetNo; private String assetNo;
private String callbackUrl;
public Asset transToAsset() { public Asset transToAsset() {
Asset asset = new Asset(); Asset asset = new Asset();
asset.setAssetNo(this.assetNo); asset.setAssetNo(this.assetNo);
...@@ -48,6 +50,7 @@ public class AssetForm implements Serializable{ ...@@ -48,6 +50,7 @@ public class AssetForm implements Serializable{
asset.setBizChannel(this.bizChannel); asset.setBizChannel(this.bizChannel);
asset.setFinanceProductType("0".equals(this.bizType) ? 0 : 1); asset.setFinanceProductType("0".equals(this.bizType) ? 0 : 1);
asset.setAuditResult("true".equals(auditResult) ? 1 : 0); asset.setAuditResult("true".equals(auditResult) ? 1 : 0);
asset.setEnable(true);
return asset; return asset;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment