9 lines
150 B
C#
9 lines
150 B
C#
|
|
public class MailRedPointIDManager
|
|||
|
|
{
|
|||
|
|
private static uint _MailId = 200;
|
|||
|
|
public static uint Genid()
|
|||
|
|
{
|
|||
|
|
return ++_MailId;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|