Package com.taobao.zeus.web.platform.client.module.tablemanager.model

Examples of com.taobao.zeus.web.platform.client.module.tablemanager.model.TableColumnModel


   */
  private TableColumnModel convert(FieldSchema fs) {
    if (fs == null) {
      return null;
    }
    TableColumnModel cm = new TableColumnModel();
    cm.setName(fs.getName());
    cm.setType(fs.getType());
    cm.setDesc(fs.getComment());
    return cm;
  }
View Full Code Here

TOP

Related Classes of com.taobao.zeus.web.platform.client.module.tablemanager.model.TableColumnModel

Copyright © 2018 www.massapicom. 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.