Package com.exedosoft.plat.agent.job

Source Code of com.exedosoft.plat.agent.job.Account

package com.exedosoft.plat.agent.job;

import java.util.Date;
import java.util.HashMap;
import java.util.Map;

import com.exedosoft.plat.ui.DOPaneModel;

public class  Account{

  /**
   * 账户号
   */
  private String accountNo;
  /**
   * 开户单位/人
   */
  private String accountName;
  /**
   * 开户日期
   */
  private Date  buildDate;

  /**
   * 账户金额(人民币账户)
   */
  private float  accountMoney;
  public Account(String accountNo,String accountName,Date buildDate,float accountMoney){
   


  }
 
  public static void main(String[] args){

    DOPaneModel pm = DOPaneModel.getPaneModelByID("0220575e5565477a9f9f4ead5af20212");
    System.out.println("PaneModel::" + pm.getGridModel());
   
   
  }
 
}
TOP

Related Classes of com.exedosoft.plat.agent.job.Account

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.