You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
32 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GummingEntity
|
|
{
|
|
public class BorderSettingEntity
|
|
{
|
|
public string RecId {get;set;}
|
|
public string SettingCode { get; set; }
|
|
public string SettingName { get; set; }
|
|
public string ReferenceId { get; set; }
|
|
public string ReferenceType { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public int BounceWay { get; set; }
|
|
public double PatternWidth { get; set; }
|
|
public double PatternHeight { get; set; }
|
|
public double TopBorder { get; set; }
|
|
public double LeftBorder { get; set; }
|
|
public double RightBorder { get; set; }
|
|
public double BottomBorder { get; set; }
|
|
public double BounceBorderX { get; set; }
|
|
public double BounceBorderY { get; set; }
|
|
public double YarnBorderX { get; set; }
|
|
public double YarnBorderY { get; set; }
|
|
public double TopMargin { get; set; }
|
|
public double LeftMargin { get; set; }
|
|
public double RightMargin { get; set; }
|
|
public double BottomMargin { get; set; }
|
|
}
|
|
}
|