wrx
5 months ago
8 changed files with 67 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
|
|||
namespace PurchingMistakeNew |
|||
{ |
|||
public class VerifyHelper |
|||
{ |
|||
public static bool ScanSjBarCodeFormat(string scanSjBarCode) |
|||
{ |
|||
if (scanSjBarCode.Length > 20 && scanSjBarCode.Contains(".") == false) |
|||
{ |
|||
return false; |
|||
} |
|||
return true; |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue