Newer
Older
EMS-WEB-3.0 / out / artifacts / ems_Web_exploded / s / app / ems / EMSBean.js
wxn on 9 Aug 2016 823 bytes first commit

EMSBean = function(markerId,markerName,lat,long, depth,ownerComp,createTime,
                   markerObjectType,markerObjectName,featureId,lineId,
                   creator,mileStone1,mileStone2,memo,id,featureName,lineName,markerDepth) {

    this.markerId = markerId;
    this.markerName = markerName;
    this.latitude = lat;
    this.longitude = long;
    this.depth = depth;
    this.ownerComp = ownerComp;
    this.createTime = createTime;
    this.markerObjectType = markerObjectType;
    this.markerObjectName = markerObjectName;
    this.id=id;
    this.featureId = featureId;
    this.lineId=lineId;
    this.creator=creator;
    this.mileage=mileStone1;
    this.mileage2=mileStone2;
    this.memo = memo;
    this.featureName= featureName;
    this.lineName=lineName;
    this.markerDepth = markerDepth;

};