You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
486 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rs.MotionPlat.Commom
{
/// <summary>
/// 虚拟码
/// </summary>
public static class VirtualBarCode
{
private static int barCode = 0;
public static string Code
{
get
{
barCode++;
return barCode.ToString().PadLeft(18,'0');
}
}
}
}