| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wms.Screen.Dto.ZhongTian.Response
- {
- public class CompareStock : IEqualityComparer<CurStockInfo>
- {
- public bool Equals(CurStockInfo x, CurStockInfo y)
- {
- return x.ContGrpBarCode == y.ContGrpBarCode;
- }
- public int GetHashCode(CurStockInfo obj)
- {
- return 1;
- }
- }
- }
|