﻿// JScript 文件
function RowStateEnum()
{
    this.None = 0;
    this.Added = 1;
    this.Modified = 2;
    this.Deleted = 3;
    this.Original = 4;
}

function ShowPosition()
{
    this.Id = arguments[0];
    this.Name = arguments[1];
    this.Description = arguments[2];
    this.PointX = arguments[3];
    this.PointY = arguments[4];
    this.RowState = arguments[5];
    this.Company;
    this.State;
    this.OrderId;
    this.Width = 30;
    this.Height = 15;
    this.Price = 0;
}

var RowState = new RowStateEnum();
var ShowPositionList = new Array();