in src/Apache.IoTDB/Rpc/Generated/TSInsertRecordReq.cs [369:381]
public override bool Equals(object that)
{
if (!(that is TSInsertRecordReq other)) return false;
if (ReferenceEquals(this, other)) return true;
return System.Object.Equals(SessionId, other.SessionId)
&& System.Object.Equals(PrefixPath, other.PrefixPath)
&& TCollections.Equals(Measurements, other.Measurements)
&& TCollections.Equals(Values, other.Values)
&& System.Object.Equals(Timestamp, other.Timestamp)
&& ((__isset.isAligned == other.__isset.isAligned) && ((!__isset.isAligned) || (System.Object.Equals(IsAligned, other.IsAligned))))
&& ((__isset.isWriteToTable == other.__isset.isWriteToTable) && ((!__isset.isWriteToTable) || (System.Object.Equals(IsWriteToTable, other.IsWriteToTable))))
&& ((__isset.columnCategoryies == other.__isset.columnCategoryies) && ((!__isset.columnCategoryies) || (TCollections.Equals(ColumnCategoryies, other.ColumnCategoryies))));
}