Commit 78a2272e LN

1

1 个父辈 e22a6f0e
...@@ -48,9 +48,16 @@ namespace OnlineStore.AutoInOutStore ...@@ -48,9 +48,16 @@ namespace OnlineStore.AutoInOutStore
str = version; str = version;
LogUtil.error("解析版本号【" + str + "】出错:" + ex.ToString()); LogUtil.error("解析版本号【" + str + "】出错:" + ex.ToString());
} }
LogUtil.info("版本号[" + version + "][" + str + "]"); LogUtil.info("版本号[" + version + "][" + str + "][" + GetCodeNum() + "]");
return str; return str;
} }
internal static string GetCodeNum(string codeName = "RC1252-AutoInOutStore")
{
byte[] byteArray = System.Text.Encoding.ASCII.GetBytes(codeName);
string result = "";
result = AcSerialBean.ByteToString(byteArray);
return result;
}
public FrmBase() public FrmBase()
{ {
InitializeComponent(); InitializeComponent();
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!