wangyingyang

fix

......@@ -136,6 +136,10 @@ public class DbToProtoUtil {
protoBuilder.setSyncRoomNo(orderDb.getSyncRoomNo());
}
if (orderDb.getPayTime() != null) {
protoBuilder.setPayTime((orderDb.getPayTime().toEpochSecond(ZoneOffset.UTC) * 1000));
}
// 处理嵌套的CustomerNotice字段
if (orderDb.getCustomerNoticeJson()!= null) {
// Constructor<CustomerNotice> customerNoticeConstructor =
......